utility: Change vstr and dstr macros to D_STR and D_VSTR

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-07-09 14:04:25 +02:00
parent 0aab0db34a
commit c7f326d428
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ extern "C" {
#include <util/profiler.hpp>
#define T_PROFILE "ProRes.Profile"
#define T_PROFILE_(x) "ProRes.Profile." vstr(x)
#define T_PROFILE_(x) "ProRes.Profile." D_VSTR(x)
#define T_CUSTOM "Custom"
#define LOG_PREFIX "[prores_aw] "
+2 -2
View File
@@ -40,8 +40,8 @@
#define DESC(x) x ".Description"
// Other
#define vstr(s) dstr(s)
#define dstr(s) #s
#define D_STR(s) #s
#define D_VSTR(s) D_STR(s)
// Initializer
#ifdef __cplusplus