qxLib
suppress_warnings.h
Go to the documentation of this file.
1 /**
2 
3  @file suppress_warnings.h
4  @author Khrapov
5  @date 11.11.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <qx/macros/config.h>
12 
13 #if QX_WIN
14 
15  /**
16  @def QX_PUSH_SUPPRESS_MSVC_WARNINGS
17  @brief Disable specified MSVC warnings
18  @param warnings - MSVC warnings numbers separated by space
19  **/
20  #define QX_PUSH_SUPPRESS_MSVC_WARNINGS(warnings) \
21  __pragma(warning(push)); \
22  __pragma(warning(disable : warnings))
23 
24  /**
25  @def QX_PUSH_SUPPRESS_ALL_WARNINGS
26  @brief Disable all warnings
27  **/
28  #define QX_PUSH_SUPPRESS_ALL_WARNINGS() __pragma(warning(push, 0))
29 
30  /**
31  @def QX_POP_SUPPRESS_WARNINGS
32  @brief Enable all warnings
33  **/
34  #define QX_POP_SUPPRESS_WARNINGS() __pragma(warning(pop))
35 
36  /**
37  @brief Force disable MSVC warnings, including all nested header includes
38  @note Prefer using QX_PUSH_SUPPRESS_MSVC_WARNINGS and QX_POP_SUPPRESS_WARNINGS
39  @param warnings - MSVC warnings numbers separated by space
40  **/
41  #define QX_DISABLE_MSVC_WARNINGS(warnings) __pragma(warning(disable : warnings))
42 
43  /**
44  @brief Enable warnings after QX_DISABLE_MSVC_WARNINGS
45  @param warnings - MSVC warnings numbers separated by space
46  **/
47  #define QX_RESTORE_MSVC_WARNINGS(warnings) __pragma(warning(default : warnings))
48 
49 #else
50 
51  #define QX_PUSH_SUPPRESS_MSVC_WARNINGS(warnings)
52  #define QX_PUSH_SUPPRESS_ALL_WARNINGS()
53  #define QX_POP_SUPPRESS_WARNINGS()
54  #define QX_DISABLE_MSVC_WARNINGS(warnings)
55  #define QX_RESTORE_MSVC_WARNINGS(warnings)
56 
57 #endif