commit 633e1a4c1ad40351a68816c913029c41a64bfb44
parent 94cd0e0821570e370863ebe7cd45d4edf4fc4da5
Author: falkTX <falktx@falktx.com>
Date: Sun, 23 May 2021 21:23:51 +0100
testing
Signed-off-by: falkTX <falktx@falktx.com>
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dgl/src/ApplicationPrivateData.cpp b/dgl/src/ApplicationPrivateData.cpp
@@ -46,7 +46,8 @@ Application::PrivateData::PrivateData(const bool standalone)
char classNameBuf[256];
std::srand((std::time(NULL)));
std::snprintf(classNameBuf, sizeof(classNameBuf), "%s_%d-%d-%p",
- DISTRHO_MACRO_AS_STRING(DGL_NAMESPACE), std::rand(), ++wc_count, this);
+ "TESTING", std::rand(), ++wc_count, this);
+ // DISTRHO_MACRO_AS_STRING(DGL_NAMESPACE)
classNameBuf[sizeof(classNameBuf)-1] = '\0';
d_stderr("--------------------------------------------------------------- className is %s", classNameBuf);