From 66952fda286ef27ee6a3b71018ddb7056ed70761 Mon Sep 17 00:00:00 2001 From: Markus Diem Date: Fri, 3 Dec 2021 11:01:15 +0100 Subject: [PATCH] remove default constructor warning --- easy_profiler_core/include/easy/serialized_block.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/easy_profiler_core/include/easy/serialized_block.h b/easy_profiler_core/include/easy/serialized_block.h index 6d1a16b..30f3fb9 100644 --- a/easy_profiler_core/include/easy/serialized_block.h +++ b/easy_profiler_core/include/easy/serialized_block.h @@ -91,7 +91,6 @@ namespace profiler { public: - CSwitchEvent() = default; CSwitchEvent(const CSwitchEvent&) = default; explicit CSwitchEvent(timestamp_t _begin_time, thread_id_t _tid) EASY_NOEXCEPT; @@ -129,7 +128,7 @@ namespace profiler { #pragma pack(push, 1) class PROFILER_API SerializedBlockDescriptor EASY_FINAL : public BaseBlockDescriptor { - uint16_t m_nameLength; ///< Length of the name including trailing '\0' sybmol + uint16_t m_nameLength; ///< Length of the name including trailing '\0' symbol public: