summaryrefslogtreecommitdiff
path: root/Tests/CompileFeatures/cxx_right_angle_brackets.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CompileFeatures/cxx_right_angle_brackets.cpp')
-rw-r--r--Tests/CompileFeatures/cxx_right_angle_brackets.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/CompileFeatures/cxx_right_angle_brackets.cpp b/Tests/CompileFeatures/cxx_right_angle_brackets.cpp
index 2713fd8d0e..8f1b0ee97c 100644
--- a/Tests/CompileFeatures/cxx_right_angle_brackets.cpp
+++ b/Tests/CompileFeatures/cxx_right_angle_brackets.cpp
@@ -1,5 +1,5 @@
-template<typename T>
+template <typename T>
struct A
{
typedef T Result;
@@ -7,6 +7,6 @@ struct A
void someFunc()
{
- A<A<int>> object;
+ A<A<int> > object;
(void)object;
}