Updated Clang Format Text Style (markdown) authored by williamfgc's avatar williamfgc
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
std::vector<std::vector<<double>> thisIsMyVeryVeryLongTwoDimensionalVectorName; std::vector<std::vector<<double>> thisIsMyVeryVeryLongTwoDimensionalVectorName;
``` ```
4. <strong>Using and typedef keywords:</strong> Prefer the keyword <strong>using</strong> over <strong>typedef</strong> for readability. Only rename very long complex or custom types, do not rename standard types (int, double, std::vector<double>). Prefer including ADIOSTypes.h as it contains fixed types in the std:: namespace (_e.g._ ```uint8_t, uint64_t``` ). 4. <strong>Using and typedef keywords:</strong> Prefer the keyword <strong>using</strong> over <strong>typedef</strong> for readability. Only rename very long complex or custom types, do not rename standard types (```int, double, std::vector<double>```). Prefer including ADIOSTypes.h as it contains fixed types in the std:: namespace (_e.g._ ```uint8_t, uint64_t``` ).
* _Don't_ * _Don't_
... ...
......