Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/GSL.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/owner_tests.cpp')
-rw-r--r--tests/owner_tests.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/owner_tests.cpp b/tests/owner_tests.cpp
index ca8222f..87c7cec 100644
--- a/tests/owner_tests.cpp
+++ b/tests/owner_tests.cpp
@@ -20,7 +20,7 @@
using namespace gsl;
-GSL_SUPPRESS(f.23) // NO-FORMAT: attribute
+GSL_SUPPRESS(f .23) // NO-FORMAT: attribute
void f(int* i) { *i += 1; }
TEST(owner_tests, basic_test)
@@ -34,10 +34,10 @@ TEST(owner_tests, basic_test)
TEST(owner_tests, check_pointer_constraint)
{
- #ifdef CONFIRM_COMPILATION_ERRORS
+#ifdef CONFIRM_COMPILATION_ERRORS
{
owner<int> integerTest = 10;
owner<std::shared_ptr<int>> sharedPtrTest(new int(10));
}
- #endif
+#endif
}