Skip to content

Commit

Permalink
Logger: fix missing prototype warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Mar 16, 2024
1 parent 07dffcb commit a47e051
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ namespace LogFileHelpers
// delete old log files to keep the total number of log files below the max!
void pruneOldLogFiles (FileArray& logFiles, const LogFileParams& params);

void flushLogger (BaseLogger* logger);
void shutdownLogger (int signal = 0);
} // namespace LogFileHelpers
#endif // DOXYGEN
Expand Down
2 changes: 1 addition & 1 deletion modules/common/chowdsp_logging/chowdsp_logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wswitch-enum",

JUCE_END_IGNORE_WARNINGS_GCC_LIKE

#include "Loggers/chowdsp_BaseLogger.h"
#include "Loggers/chowdsp_LogFileHelpers.h"
#include "Loggers/chowdsp_CrashLogHelpers.h"
#include "Loggers/chowdsp_BaseLogger.h"
#include "Loggers/chowdsp_Logger.h"

// legacy
Expand Down

0 comments on commit a47e051

Please sign in to comment.