From ae99e69af033f9ae1b72faabf011381d0641e8af Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Thu, 28 Jan 2021 12:13:50 -0500 Subject: [PATCH] Fix #include guard --- src/TempDirectory.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/TempDirectory.h b/src/TempDirectory.h index 0c369392e..c795f7df4 100644 --- a/src/TempDirectory.h +++ b/src/TempDirectory.h @@ -10,7 +10,6 @@ #ifndef __AUDACITY_TEMP_DIRECTORY__ #define __AUDACITY_TEMP_DIRECTORY__ -#endif #include "Audacity.h" #include "audacity/Types.h" @@ -32,3 +31,5 @@ namespace TempDirectory wxWindow *window = nullptr); }; + +#endif