Skip to content

Commit d9766b8

Browse files
committed
[Format] set Standard to C++03
avoid this error when compiling in C++ < 11 > error: '>>' should be '> >' within a nested template argument list
1 parent 3b29ac4 commit d9766b8

File tree

8 files changed

+279
-275
lines changed

8 files changed

+279
-275
lines changed

.clang-format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
---
22
ColumnLimit: 80
3+
Standard: C++03
34
...

include/sot/core/reader.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public:
7373
void rewind(void);
7474

7575
protected:
76-
typedef std::list<std::vector<double>> DataType;
76+
typedef std::list<std::vector<double> > DataType;
7777
DataType dataSet;
7878
DataType::const_iterator currentData;
7979
bool iteratorSet;

0 commit comments

Comments
 (0)