Changes
Page history
Updated Clang Format Text Style (markdown)
authored
May 04, 2017
by
williamfgc
Hide whitespace changes
Inline
Side-by-side
Clang-Format-Text-Style.md
View page @
632964ca
...
@@ -24,7 +24,7 @@ using std::vector<std::vector<double>> = vDouble2D;
...
@@ -24,7 +24,7 @@ using std::vector<std::vector<double>> = vDouble2D;
std
::
vector
<
std
::
vector
<<
double
>>
this_is_my_very_very_long_two_dimensional_vector_name
;
std
::
vector
<
std
::
vector
<<
double
>>
this_is_my_very_very_long_two_dimensional_vector_name
;
```
```
</li>
</li>
<li>
Do
<li>
Do
```
cpp
```
cpp
std
::
vector
<
std
::
vector
<<
double
>>
thisIsMyVeryVeryLongTwoDimensionalVectorName
;
std
::
vector
<
std
::
vector
<<
double
>>
thisIsMyVeryVeryLongTwoDimensionalVectorName
;
...
@@ -41,7 +41,7 @@ std::vector<std::vector<<double>> thisIsMyVeryVeryLongTwoDimensionalVectorName;
...
@@ -41,7 +41,7 @@ std::vector<std::vector<<double>> thisIsMyVeryVeryLongTwoDimensionalVectorName;
typedef std::vector<std::vector<std::map<std::string, double>>> MapIn2DVector;
typedef std::vector<std::vector<std::map<std::string, double>>> MapIn2DVector;
```
```
</li>
</li>
<li> Do
<li> Do
```cpp
```cpp
using std::vector<std::vector<std::map<std::string, double>>> = MapIn2DVector;
using std::vector<std::vector<std::map<std::string, double>>> = MapIn2DVector;
...
...
...
...