We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d56a4f5 commit 89010a9Copy full SHA for 89010a9
.gitignore
@@ -3,10 +3,7 @@
3
4
# VS code
5
.vscode/*
6
-!.vscode/settings.json
7
-!.vscode/tasks.json
8
-!.vscode/launch.json
9
-!.vscode/extensions.json
+.vscode/settings.json
10
*.code-workspace
11
12
# Local History for Visual Studio Code
src/libhelix-aac/aaccommon.h
@@ -56,8 +56,14 @@
56
# define AAC_ENABLE_SBR
57
#endif // HELIX_FEATURE_AUDIO_CODEC_AAC_SBR.
58
59
-#if !defined(ARDUINO) && defined(__GNUC__)
60
-#pragma GCC diagnostic ignored "-Wstringop-overflow"
+#if !defined(ARDUINO)
+# if defined(__clang__)
61
+// n/a
62
+# elif defined(__GNUC__) || defined(__GNUG__)
63
+# pragma GCC diagnostic ignored "-Wstringop-overflow"
64
+# elif defined(_MSC_VER)
65
66
+# endif
67
#endif
68
69
#include "aacdec.h"
0 commit comments