Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When we have C++11 we also use noexcept(false) #397

Merged
merged 3 commits into from Jan 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -126,6 +126,7 @@ Linux family:
Windows family:
* Windows 7 (32-bit, 64-bit)
* Windows Server 2012 R2 (64-bit)
* Windows 10 (64-bit)

Others:
* SunOS 5.10 (Solaris 10) (SPARC)
Expand Down Expand Up @@ -161,6 +162,7 @@ This release of OpenDDS has been tested using the following compilers:
* gcc 4.9.x
* gcc 5.4
* gcc 6.2
* gcc 6.3
* Clang 3.8 (llvm.org) and 7.3 (Apple)
* Sun C++ 5.9 SunOS_sparc Patch 124863-01 2007/07/25

Expand Down
2 changes: 1 addition & 1 deletion tools/modeling/codegen/model/Sync.h
Expand Up @@ -7,7 +7,7 @@
#include <ace/Condition_T.h>
#include <ace/Condition_Thread_Mutex.h>

#if defined _MSC_VER && _MSC_VER >= 1900
#if defined (ACE_HAS_CPP11)
#define OPENDDS_NOEXCEPT_FALSE noexcept(false)
#else
#define OPENDDS_NOEXCEPT_FALSE
Expand Down