diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-10-02 00:01:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-02 00:01:31 +0200 |
commit | 53fbd93409adfde3671396b52291c02a1c281843 (patch) | |
tree | 2e668e40c6ad51da360f5dfcbfd30279f5c84b9f /core/object.h | |
parent | fb5e732f78d388e9063f4563198ebd0518ae0878 (diff) | |
parent | b2bba4be44dc34953402c5cde74c26b89ad84cbc (diff) |
Merge pull request #22593 from akien-mga/fix-warnings
Fix various warnings raised by Clang 7
Diffstat (limited to 'core/object.h')
-rw-r--r-- | core/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object.h b/core/object.h index f9e8755e06..b23160c1df 100644 --- a/core/object.h +++ b/core/object.h @@ -422,7 +422,7 @@ private: }; #ifdef DEBUG_ENABLED - friend class _ObjectDebugLock; + friend struct _ObjectDebugLock; #endif friend bool predelete_handler(Object *); friend void postinitialize_handler(Object *); |