diff options
Diffstat (limited to 'src/Debugging.h')
-rw-r--r-- | src/Debugging.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Debugging.h b/src/Debugging.h index b7ea20b98..5221ff8e3 100644 --- a/src/Debugging.h +++ b/src/Debugging.h @@ -9,7 +9,7 @@ #ifndef DEBUGGING_H #define DEBUGGING_H -namespace Scintilla { +namespace Scintilla::Internal { #if defined(__clang__) # if __has_feature(attribute_analyzer_noreturn) @@ -36,7 +36,7 @@ void Assert(const char *c, const char *file, int line) noexcept CLANG_ANALYZER_N #ifdef NDEBUG #define PLATFORM_ASSERT(c) ((void)0) #else -#define PLATFORM_ASSERT(c) ((c) ? (void)(0) : Scintilla::Platform::Assert(#c, __FILE__, __LINE__)) +#define PLATFORM_ASSERT(c) ((c) ? (void)(0) : Scintilla::Internal::Platform::Assert(#c, __FILE__, __LINE__)) #endif } |