diff options
author | Erik Sohns <eriksohns@fastmail.net> | 2015-12-04 19:14:15 +0100 |
---|---|---|
committer | Erik Sohns <eriksohns@fastmail.net> | 2015-12-04 19:14:15 +0100 |
commit | 5a757dde38a30de454f1b5c3db3f1873de20c098 (patch) | |
tree | 1c3d2aee781e2a2050359a2f498c0032bf9de754 | |
parent | 39aeb7f5722b0a02318a78973a2f1ab9aa9ef405 (diff) | |
download | ATCD-5a757dde38a30de454f1b5c3db3f1873de20c098.tar.gz |
fixed an issue with (exported) template specializations (Win32)
-rw-r--r-- | ACE/ace/config-g++-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/config-g++-common.h b/ACE/ace/config-g++-common.h index 48774773f29..923f8d6c064 100644 --- a/ACE/ace/config-g++-common.h +++ b/ACE/ace/config-g++-common.h @@ -50,7 +50,7 @@ // *NOTE*: suppress a warning, g++ 5.2.1 does not support attributes on template // instantiation declarations // *TODO*: this probably goes back further than 5.2 -# if (__GNUC__ >= 5 || (__GNUC__ == 5 && __GNUC_MINOR__ >= 2)) +# if (__GNUC__ >= 6 || (__GNUC__ == 5 && __GNUC_MINOR__ >= 2)) # define ACE_LACKS_CPP11_EXTERN_TEMPLATE_ATTRIBUTES # endif /* __GNUC__ >= 5.2 */ #endif /* ACE_HAS_CPP11 */ |