diff --git a/03-Style.md b/03-Style.md index 0ee0f28..7ba3449 100644 --- a/03-Style.md +++ b/03-Style.md @@ -113,6 +113,9 @@ class MyClass { #endif ``` +You may also consider to use the `#pragma once` directive instead which is quasi standard across many compilers. +It's short and makes the intent clear. + ## {} are required for blocks. Leaving them off can lead to semantic errors in the code.