Skip to content

Commit

Permalink
[Format] set Standard to C++03
Browse files Browse the repository at this point in the history
avoid this error when compiling in C++ < 11
> error: '>>' should be '> >' within a nested template argument list
  • Loading branch information
nim65s committed Oct 30, 2019
1 parent 3b29ac4 commit d9766b8
Show file tree
Hide file tree
Showing 8 changed files with 279 additions and 275 deletions.
1 change: 1 addition & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
ColumnLimit: 80
Standard: C++03
...
2 changes: 1 addition & 1 deletion include/sot/core/reader.hh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public:
void rewind(void);

protected:
typedef std::list<std::vector<double>> DataType;
typedef std::list<std::vector<double> > DataType;
DataType dataSet;
DataType::const_iterator currentData;
bool iteratorSet;
Expand Down
Loading

0 comments on commit d9766b8

Please sign in to comment.