summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ocl.hpp10
-rw-r--r--include/ocl/version.hpp8
2 files changed, 9 insertions, 9 deletions
diff --git a/include/ocl.hpp b/include/ocl.hpp
index a662435..1157c47 100644
--- a/include/ocl.hpp
+++ b/include/ocl.hpp
@@ -3,8 +3,8 @@
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// Official repository: https://github.com/ocl-org/ocl
-#ifndef __OCL_HPP
-#define __OCL_HPP
+#ifndef OCL_HPP
+#define OCL_HPP
// Version header
#include <ocl/version.hpp>
@@ -17,16 +17,16 @@
#include <ocl/print.hpp>
#include <ocl/smart_ptr.hpp>
-#ifdef __OCL_FIX
+#ifdef OCL_FIX
# include <ocl/fix.hpp>
#endif
-#ifdef __OCL_TPROC
+#ifdef OCL_TPROC
# include <ocl/tproc.hpp>
#endif
-#endif // ifndef __OCL_HPP
+#endif // ifndef OCL_HPP
diff --git a/include/ocl/version.hpp b/include/ocl/version.hpp
index 4acea5a..59828f4 100644
--- a/include/ocl/version.hpp
+++ b/include/ocl/version.hpp
@@ -3,17 +3,17 @@
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// Official repository: https://github.com/ocl-org/ocl
-#ifndef __OCL_VERSION_HPP
-#define __OCL_VERSION_HPP
+#ifndef OCL_VERSION_HPP
+#define OCL_VERSION_HPP
// This is a Binary Encoded Decimal of the OCL's version.
// Which will be incremented each time a new release is done.
-#define OCL_VERSION 0x010600
+#define OCL_VERSION 0x016100
// This is the library version, which applies the following pattern:
// <semver> use it to detect what version of the OCL you're using.
-#define OCL_LIB_VERSION "01_06_"
+#define OCL_LIB_VERSION "01_61_"
#endif