mirror of
https://github.com/taglib/taglib.git
synced 2025-07-26 08:54:30 -04:00
Moved a macro from taglib_config.h to config.h
This commit is contained in:
@ -2,5 +2,3 @@
|
||||
|
||||
#define TAGLIB_WITH_ASF 1
|
||||
#define TAGLIB_WITH_MP4 1
|
||||
|
||||
#cmakedefine TAGLIB_TRACE_IN_RELEASE 1
|
||||
|
@ -24,7 +24,6 @@
|
||||
***************************************************************************/
|
||||
|
||||
#include "config.h"
|
||||
#include "taglib_config.h"
|
||||
|
||||
#include "tdebug.h"
|
||||
#include "tstring.h"
|
||||
@ -68,7 +67,7 @@ namespace
|
||||
|
||||
void TagLib::debug(const String &s)
|
||||
{
|
||||
#if !defined(NDEBUG) || defined(TAGLIB_TRACE_IN_RELEASE)
|
||||
#if !defined(NDEBUG) || defined(TRACE_IN_RELEASE)
|
||||
|
||||
getDebugListener()->printMessage("TagLib: " + s + "\n");
|
||||
|
||||
@ -77,7 +76,7 @@ void TagLib::debug(const String &s)
|
||||
|
||||
void TagLib::debugData(const ByteVector &v)
|
||||
{
|
||||
#if !defined(NDEBUG) || defined(TAGLIB_TRACE_IN_RELEASE)
|
||||
#if !defined(NDEBUG) || defined(TRACE_IN_RELEASE)
|
||||
|
||||
for(size_t i = 0; i < v.size(); ++i)
|
||||
{
|
||||
|
Reference in New Issue
Block a user