1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2026-06-20 01:17:49 +02:00

Remove no longer used GLUE() macro.

This commit is contained in:
David Steele
2025-10-05 12:42:42 +02:00
parent b4e3d21363
commit b8ed84f754
-9
View File
@@ -15,15 +15,6 @@ Useful for converting non-string types (e.g. int) to strings for inclusion in me
#define STRINGIFY_HELPER(param) #param
#define STRINGIFY(param) STRINGIFY_HELPER(param)
/***********************************************************************************************************************************
Glue together a string/macro and another string//macro
Useful for creating function names when one or both of the macro parameter needs to be converted to a macro before concatenating.
common/type/object.h has numerous examples of this.
***********************************************************************************************************************************/
#define GLUE_HELPER(param1, param2) param1##param2
#define GLUE(param1, param2) GLUE_HELPER(param1, param2)
/***********************************************************************************************************************************
If param2 > param1 then assign it to param1