Skip to content

Commit 5e1441b

Browse files
committed
Fix some preprocessor directives that were generating warnings in the test suite.
llvm-svn: 235999
1 parent bdb4910 commit 5e1441b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libcxx/test/libcxx/experimental/utilities/ratio/header.ratio.synop/includes.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#include <experimental/ratio>
1515

16-
#ifndef _LIBCPP_STD_VER > 11
16+
#if _LIBCPP_STD_VER > 11
1717
# ifndef _LIBCPP_RATIO
1818
# error " <experimental/ratio> must include <ratio>"
1919
# endif

libcxx/test/libcxx/experimental/utilities/syserror/header.system_error.synop/includes.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#include <experimental/system_error>
1313

14-
#ifndef _LIBCPP_STD_VER > 11
14+
#if _LIBCPP_STD_VER > 11
1515
# ifndef _LIBCPP_SYSTEM_ERROR
1616
# error "<experimental/system_error> must include <system_error>"
1717
# endif

0 commit comments

Comments
 (0)