summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Sohns <eriksohns@fastmail.net>2015-12-04 19:14:15 +0100
committerErik Sohns <eriksohns@fastmail.net>2015-12-04 19:14:15 +0100
commit5a757dde38a30de454f1b5c3db3f1873de20c098 (patch)
tree1c3d2aee781e2a2050359a2f498c0032bf9de754
parent39aeb7f5722b0a02318a78973a2f1ab9aa9ef405 (diff)
downloadATCD-5a757dde38a30de454f1b5c3db3f1873de20c098.tar.gz
fixed an issue with (exported) template specializations (Win32)
-rw-r--r--ACE/ace/config-g++-common.h2
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 */