diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-12-19 16:28:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-12-19 18:49:07 +0300 |
commit | d6138db85ae0f95f7fce99ba04a7b06c4779b953 (patch) | |
tree | 1acf3d7fd44e6fd248dcf3e051e712c2aeb79eb9 /src/actions | |
parent | a07fa9a14b7fa59d1e6c347ccbffb7f2c007e514 (diff) | |
download | plus-d6138db85ae0f95f7fce99ba04a7b06c4779b953.tar.gz plus-d6138db85ae0f95f7fce99ba04a7b06c4779b953.tar.bz2 plus-d6138db85ae0f95f7fce99ba04a7b06c4779b953.tar.xz plus-d6138db85ae0f95f7fce99ba04a7b06c4779b953.zip |
Fix compilation with cilk plus on gcc 6+.
Diffstat (limited to 'src/actions')
-rw-r--r-- | src/actions/actions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actions/actions.h b/src/actions/actions.h index 51c461953..85e2bde5a 100644 --- a/src/actions/actions.h +++ b/src/actions/actions.h @@ -81,9 +81,9 @@ namespace Actions decHandler(serverIgnoreAll); decHandler(serverUnIgnoreAll); decHandler(error) -#ifndef ENABLE_CILKPLUS +#ifndef BAD_CILKPLUS __attribute__ ((noreturn)) -#endif // ENABLE_CILKPLUS +#endif // BAD_CILKPLUS ; decHandler(dumpGraphics); decHandler(dumpEnvironment); |