前提
JUCEというオーディオプラグインを制作するツールを使っており、
C++に関する質問で、
C++ requires a type specifier for all declarationsの意味とその解決方法が知りたいです。
実現したいこと
エラーの解決
発生している問題・エラーメッセージ
C++ requires a type specifier for all declarations Expected ')' Expected parameter declarator
該当のソースコード
C++
#ifndef DOXYGEN // This class now has a move operator, so if you're trying to move them around, you // should use that, or if you really need to swap two groups, just call std::swap. // However, remember that swapping a group that's already owned by an AudioProcessor // will most likely crash the host, so don't do that. JUCE_DEPRECATED_WITH_BODY (void swapWith (AudioProcessorParameterGroup& other), { std::swap (*this, other); }); #endif
試したこと
何もできません。
補足情報(FW/ツールのバージョンなど)
エディターはXCodeを使用しております。
0 コメント