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

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/10/08 09:11
2022/10/08 09:41
2022/10/10 04:13
2022/10/10 14:47 編集
2022/10/12 11:41