Skip to content

Commit f2e8918

Browse files
author
Daniel Kroening
committed
coding guidelines: prefer use of instead of
Functionally equivalent, but more modern. This is also what Google's C++ Style Guide says.
1 parent 3028bf8 commit f2e8918

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)