diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-29 22:43:23 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-29 22:43:23 +0100 |
| commit | ed4f331bc96b4abb711c5b47c969d5ecb3166e15 (patch) | |
| tree | 9c16e5828fed25aa5da10ab4f6ef2aad5243978d /test/fix_basic | |
| parent | 86e7686916a063082111be1b4831c201f24f8adf (diff) | |
feat: fix CMake example, update free functions.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'test/fix_basic')
| -rw-r--r-- | test/fix_basic/fix.test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fix_basic/fix.test.cpp b/test/fix_basic/fix.test.cpp index fd82965..82fb24c 100644 --- a/test/fix_basic/fix.test.cpp +++ b/test/fix_basic/fix.test.cpp @@ -22,8 +22,8 @@ constexpr char default_fix[] = { '1', '0', '=', '1', '4', '3', 0x01, 0x00 // CheckSum = 143 }; -ocl::fix::visitor basic_visitor; -ocl::fix::range_buffer fix = basic_visitor.visit(default_fix); +static ocl::fix::visitor basic_visitor; +static ocl::fix::range_buffer fix = basic_visitor.visit(default_fix); TEST(FIXTest, FIXGoodPacket) { |
