We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f45ebce commit 918f664Copy full SHA for 918f664
include/tsl/robin_growth_policy.h
@@ -35,6 +35,13 @@
35
#include <ratio>
36
#include <stdexcept>
37
38
+// A change of the major version indicates an API and/or ABI break (change of in-memory layout of the data structure)
39
+#define TSL_RH_VERSION_MAJOR 1
40
+// A change of the minor version indicates the addition of a feature without impact on the API/ABI
41
+#define TSL_RH_VERSION_MINOR 2
42
+// A change of the patch version indicates a bugfix without additional functionality
43
+#define TSL_RH_VERSION_PATCH 1
44
+
45
#ifdef TSL_DEBUG
46
#define tsl_rh_assert(expr) assert(expr)
47
#else
0 commit comments