diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-24 10:22:15 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-24 10:22:15 +0100 |
| commit | fe9f08fdbab41b42fb51d17df65090ed1d81751f (patch) | |
| tree | c026e1c3a5b0405ab17d79f1f4fcf6a978fe106b | |
| parent | bcc73b23e9d1980b6a897499b4a4202375ae7655 (diff) | |
chore: update header guard.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | PROPOSING.md (renamed from PROPOSAL.md) | 2 | ||||
| -rw-r--r-- | include/ocl.hpp | 10 | ||||
| -rw-r--r-- | include/ocl/version.hpp | 8 | ||||
| m--------- | libs/core | 0 | ||||
| m--------- | libs/fix | 0 | ||||
| m--------- | libs/tproc | 0 |
6 files changed, 10 insertions, 10 deletions
diff --git a/PROPOSAL.md b/PROPOSING.md index 9ee7f7d..8a18747 100644 --- a/PROPOSAL.md +++ b/PROPOSING.md @@ -6,7 +6,7 @@ OCL proposals can be done at the following address: [contact@nekernel.org](conta ### Note -Freestanding targets are defined using the `__OCL_FREESTANDING` macro. +Freestanding targets are defined using the `OCL_FREESTANDING` macro. - Verified: Freestanding verified. - Half-Verified: Some components have been freestanding verified. 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 diff --git a/libs/core b/libs/core -Subproject 8f0afe0818c275cacc5960193027f6a3929e0a6 +Subproject c1aef2468265ca02a2e868e1b1a207e07a51d24 diff --git a/libs/fix b/libs/fix -Subproject 20f36d5bb5f30ba759676fde1a4da0579e66a87 +Subproject 3bcffb14feca0aed59587db9fe7841e9ce1e783 diff --git a/libs/tproc b/libs/tproc -Subproject 8d68008d2d3bc717d7bacf38aed0a4b42bbe5b2 +Subproject 200f051ab38f7074f5a20ef1cb61c87e85638d9 |
