From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/_deprecated_8hpp_source.xhtml | 113 ++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 20.02/_deprecated_8hpp_source.xhtml (limited to '20.02/_deprecated_8hpp_source.xhtml') diff --git a/20.02/_deprecated_8hpp_source.xhtml b/20.02/_deprecated_8hpp_source.xhtml new file mode 100644 index 0000000000..0c4b1edcb6 --- /dev/null +++ b/20.02/_deprecated_8hpp_source.xhtml @@ -0,0 +1,113 @@ + + + + + + + + + + + + + +ArmNN: include/armnn/Deprecated.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Deprecated.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #if __GNUC__
9 # define ARMNN_NO_DEPRECATE_WARN_BEGIN \
10  _Pragma("GCC diagnostic push") \
11  _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
12 
13 # define ARMNN_NO_DEPRECATE_WARN_END \
14  _Pragma("GCC diagnostic pop")
15 
16 #elif __clang__
17 # define ARMNN_NO_DEPRECATE_WARN_BEGIN \
18  _Pragma("clang diagnostic push") \
19  _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"")
20 
21 # define ARMNN_NO_DEPRECATE_WARN_END \
22  _Pragma("clang diagnostic pop")
23 
24 #elif defined (_MSC_VER)
25 # define ARMNN_NO_DEPRECATE_WARN_BEGIN \
26  __pragma(warning( push )) \
27  __pragma(warning(disable : 4996))
28 
29 # define ARMNN_NO_DEPRECATE_WARN_END \
30  __pragma(warning( pop ))
31 
32 #else
33 # define ARMNN_NO_DEPRECATE_WARN_BEGIN
34 # define ARMNN_NO_DEPRECATE_WARN_END
35 #endif
36 
37 #define ARMNN_SUPRESS_DEPRECATE_WARNING(func) \
38 ARMNN_NO_DEPRECATE_WARN_BEGIN \
39 func; \
40 ARMNN_NO_DEPRECATE_WARN_END
41 
42 #define ARMNN_DEPRECATED [[deprecated]]
43 #define ARMNN_DEPRECATED_MSG(message) [[deprecated(message)]]
44 
45 #if defined(__GNUC__) && (__GNUC__ < 6)
46 # define ARMNN_DEPRECATED_ENUM
47 # define ARMNN_DEPRECATED_ENUM_MSG(message)
48 #else
49 # define ARMNN_DEPRECATED_ENUM ARMNN_DEPRECATED
50 # define ARMNN_DEPRECATED_ENUM_MSG(message) ARMNN_DEPRECATED_MSG(message)
51 #endif
+
+ + + + -- cgit v1.2.1