Skip to content

Commit 3a393e0

Browse files
authored
Merge pull request #3270 from diffblue/using-vs-typedef
coding guidelines: prefer using instead of typedef
2 parents 9d0993c + f2e8918 commit 3a393e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CODING_STANDARD.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ Formatting is enforced using clang-format. For more information about this, see
160160

161161
# C++ features
162162
- Do not use namespaces, except for anonymous namespaces.
163-
- Prefer use of `typedef` instead of `using`.
163+
- Prefer use of `using` instead of `typedef`.
164164
- Prefer use of `class` instead of `struct`.
165165
- Write type modifiers before the type specifier.
166166
- Make references `const` whenever possible

0 commit comments

Comments
 (0)