0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-26 08:01:51 +08:00

remove default constructor warning

This commit is contained in:
Markus Diem 2021-12-03 11:01:15 +01:00
parent c5d9a94ed9
commit 66952fda28

View File

@ -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: