From f2e8918810286c27d63db2e2a992a34749356d43 Mon Sep 17 00:00:00 2001 From: Daniel Kroening Date: Mon, 5 Nov 2018 13:39:26 +0000 Subject: [PATCH] coding guidelines: prefer use of instead of Functionally equivalent, but more modern. This is also what Google's C++ Style Guide says. --- CODING_STANDARD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODING_STANDARD.md b/CODING_STANDARD.md index 278054ac5b2..cddc7292c9d 100644 --- a/CODING_STANDARD.md +++ b/CODING_STANDARD.md @@ -160,7 +160,7 @@ Formatting is enforced using clang-format. For more information about this, see # C++ features - Do not use namespaces, except for anonymous namespaces. -- Prefer use of `typedef` instead of `using`. +- Prefer use of `using` instead of `typedef`. - Prefer use of `class` instead of `struct`. - Write type modifiers before the type specifier. - Make references `const` whenever possible