From 2786989e954ce81dd92189b68ae0ac680dc29b66 Mon Sep 17 00:00:00 2001 From: Joshua Sziede <jsziede@yahoo.com> Date: Mon, 19 Nov 2018 22:18:58 -0500 Subject: [PATCH] Fix minor inconsistency with header sizes --- documents/Compiler_Flags.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documents/Compiler_Flags.md b/documents/Compiler_Flags.md index 5c43f6d..a1c108b 100644 --- a/documents/Compiler_Flags.md +++ b/documents/Compiler_Flags.md @@ -9,8 +9,8 @@ Wall is used to enable many warnings that would otherwise be ignored. Typically #### -pedantic Similar to Wall, we want to prevent any undesired or inconsistent behavior that may occur after compilation. pedantic enables more warning messages during compilation that would otherwise be ignored. -### -std=c99 +#### -std=c99 This tells the compiler we want to follow the C99 standard during compilation. -### -g +#### -g g allows the compiler to produce debugging information that may be useful. -- GitLab