2
0
mirror of https://github.com/boostorg/lambda2.git synced 2026-01-23 17:42:53 +00:00

Add operator<<, operator>>

This commit is contained in:
Peter Dimov
2021-06-27 05:15:47 +03:00
parent c4dfb9786b
commit a3cb2d75f4
2 changed files with 50 additions and 0 deletions

View File

@@ -2,6 +2,10 @@
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#if defined(_MSC_VER) && _MSC_VER == 1900
# pragma warning(disable: 4552) // '<<': operator has no effect; expected operator with side-effect
#endif
#include <boost/lambda2.hpp>
#include <boost/core/lightweight_test.hpp>
@@ -56,5 +60,8 @@ int main()
#endif
TEST_BINARY(<<)
TEST_BINARY(>>)
return boost::report_errors();
}