-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #213 from boostorg/develop
Changes for 1.86
- Loading branch information
Showing
6 changed files
with
69 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/*============================================================================= | ||
Boost.Wave: A Standard compliant C++ preprocessor library | ||
http://www.boost.org/ | ||
Copyright (c) 2001-2012 Hartmut Kaiser. Distributed under the Boost | ||
Software License, Version 1.0. (See accompanying file | ||
LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
The tests included in this file were initially taken from the mcpp V2.5 | ||
preprocessor validation suite and were modified to fit into the Boost.Wave | ||
unit test requirements. | ||
The original files of the mcpp preprocessor are distributed under the | ||
license reproduced at the end of this file. | ||
=============================================================================*/ | ||
|
||
// Tests error reporting: overflow of constant expression in #if directive. | ||
|
||
// 14.10: | ||
//E t_6_070.cpp(20): error: integer overflow in preprocessor expression: $E(__TESTWAVE_LONG_MIN__) / - 1 | ||
#if __TESTWAVE_LONG_MIN__ / - 1 | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -220,6 +220,7 @@ t_6_066.cpp | |
t_6_067.cpp | ||
t_6_068.cpp | ||
t_6_069.cpp | ||
t_6_070.cpp | ||
|
||
# | ||
# t_7: C++0x testing | ||
|