Skip to content

Commit 5415a30

Browse files
committed
Fixed linker issued due to missing static inline qualifier
* Fixed missing static inline qualifier from cc_omap_post_erase_fixup. * Updated version numbers and notes.
1 parent 0fce3f5 commit 5415a30

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

benchmarks/omap_and_oset/bench_omap_and_oset.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
3-
Convenient Containers v1.3.0 - benchmarks/omap_and_oset/bench_omap_and_oset.cpp
3+
Convenient Containers v1.3.1 - benchmarks/omap_and_oset/bench_omap_and_oset.cpp
44
55
This file benchmarks CC's ordered map and ordered set against the equivalent C++ STL containers.
66

cc.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*----------------------------------------- CC: CONVENIENT CONTAINERS v1.3.0 -------------------------------------------
1+
/*----------------------------------------- CC: CONVENIENT CONTAINERS v1.3.1 -------------------------------------------
22
33
This library provides usability-oriented generic containers (vectors, linked lists, unordered maps, unordered sets,
44
ordered maps, and ordered sets).
@@ -771,6 +771,7 @@ Including the library:
771771
772772
Version history:
773773
774+
23/08/2024 1.3.1: Fixed missing static inline qualifier on an internal omap function.
774775
29/07/2024 1.3.0: Added ordered map and ordered set.
775776
Fixed cc_erase_itr to return a correctly typed pointer-iterator instead of void *.
776777
Fixed a bug in list that caused cc_next and cc_prev to behave incorrectly when passed an r_end and

tests/tests_against_stl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
3-
Convenient Containers v1.3.0 - tests/tests_against_stl.cpp
3+
Convenient Containers v1.3.1 - tests/tests_against_stl.cpp
44
55
This file tests CC containers against the equivalent C++ STL containers.
66
Primarily, it checks that a CC container and its equivalent STL container end up in the same state after a random

tests/unit_tests.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
3-
Convenient Containers v1.3.0 - tests/unit_tests.c
3+
Convenient Containers v1.3.1 - tests/unit_tests.c
44
55
This file tests CC containers.
66
It aims to cover the full API and to check corner cases, particularly transitions between placeholder containers and

0 commit comments

Comments
 (0)