From c93b54a88d80cd0d1b42ba0253cfbfa52cec4b47 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Wed, 9 Jan 2019 19:32:34 +0300 Subject: [PATCH] Removed obsolete tweak, because KDevelop has migrated to clang parser long time ago --- libs/libcommon/include/common/Types.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/libs/libcommon/include/common/Types.h b/libs/libcommon/include/common/Types.h index d2fdb0a8343..70c9c3d2f3c 100644 --- a/libs/libcommon/include/common/Types.h +++ b/libs/libcommon/include/common/Types.h @@ -1,6 +1,5 @@ #pragma once #include -#include using Int8 = int8_t; using Int16 = int16_t; @@ -11,9 +10,3 @@ using UInt8 = uint8_t; using UInt16 = uint16_t; using UInt32 = uint32_t; using UInt64 = uint64_t; - -/// Workaround for the issue, that KDevelop doesn't see time_t and size_t types (for syntax highlight). -#ifdef IN_KDEVELOP_PARSER - using time_t = Int64; - using size_t = UInt64; -#endif