summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 3d6a87651..36fa4b86a 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -52,7 +52,7 @@ namespace Example {
52// Namespace contents are not indented 52// Namespace contents are not indented
53 53
54// Declare globals at the top 54// Declare globals at the top
55int g_foo = 0; 55int g_foo{}; // {} can be used to initialize types as 0, false, or nullptr
56char* g_some_pointer; // Pointer * and reference & stick to the type name 56char* g_some_pointer; // Pointer * and reference & stick to the type name
57 57
58/// A colorful enum. 58/// A colorful enum.
@@ -73,7 +73,9 @@ struct Position {
73// Use "typename" rather than "class" here 73// Use "typename" rather than "class" here
74template <typename T> 74template <typename T>
75void FooBar() { 75void FooBar() {
76 int some_array[] = { 76 std::string some_string{ "prefer uniform initialization" };
77
78 int some_array[]{
77 5, 79 5,
78 25, 80 25,
79 7, 81 7,