summaryrefslogtreecommitdiff
path: root/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp')
-rw-r--r--test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp b/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp
index ebddeca60..e06229f7e 100644
--- a/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp
+++ b/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp
@@ -32,7 +32,7 @@ int main()
test_remove_cvref<const volatile int, int>();
test_remove_cvref<volatile int, int>();
-// Doesn't decay
+// Doesn't decay
test_remove_cvref<int[3], int[3]>();
test_remove_cvref<int const [3], int[3]>();
test_remove_cvref<int volatile [3], int[3]>();