Skip to content

Commit 821ac82

Browse files
committed
Minor improvements
1 parent c2201f3 commit 821ac82

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

source/Executor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#if 1
1515
#define VERBOSE(...) Logger::Verbose(__VA_ARGS__)
16-
#define VERBOSE_TAB(...) const auto tab = Logger::Verbose(__VA_ARGS__, Logger::Tabs{})
16+
#define VERBOSE_TAB(...) const auto tab = Logger::VerboseTab(__VA_ARGS__)
1717
#else
1818
#define VERBOSE(...) LANGULUS(NOOP)
1919
#define VERBOSE_TAB(...) LANGULUS(NOOP)

source/TFactory.inl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,9 @@ namespace Langulus::Flow
5656
/// Dump the factory to the log
5757
TEMPLATE()
5858
void FACTORY()::Dump() const {
59-
const auto scope = Logger::Special("--------- FACTORY DUMP FOR ",
59+
const auto scope = Logger::SpecialTab("--------- FACTORY DUMP FOR ",
6060
MetaDataOf<TFactory>(), " (", Base::mCount, " of ", Base::mReserved,
61-
" cells used in ", Base::mFrames.GetCount(), " frames): ",
62-
Logger::Tabs {}
61+
" cells used in ", Base::mFrames.GetCount(), " frames): "
6362
);
6463

6564
Count counter = 0;

source/Temporal.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#if 1
1616
#define VERBOSE_TEMPORAL(...) Logger::Verbose(*this, ": ", __VA_ARGS__)
17-
#define VERBOSE_TEMPORAL_TAB(...) const auto tab = Logger::Verbose(*this, ": ", __VA_ARGS__, Logger::Tabs{})
17+
#define VERBOSE_TEMPORAL_TAB(...) const auto tab = Logger::VerboseTab(*this, ": ", __VA_ARGS__)
1818
#else
1919
#define VERBOSE_TEMPORAL(...) LANGULUS(NOOP)
2020
#define VERBOSE_TEMPORAL_TAB(...) LANGULUS(NOOP)

source/inner/Missing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#if 1
1515
#define VERBOSE_MISSING_POINT(...) Logger::Verbose(__VA_ARGS__)
16-
#define VERBOSE_MISSING_POINT_TAB(...) const auto tabs = Logger::Verbose(__VA_ARGS__, Logger::Tabs{})
16+
#define VERBOSE_MISSING_POINT_TAB(...) const auto tabs = Logger::VerboseTab(__VA_ARGS__)
1717
#define VERBOSE_FUTURE(...) Logger::Verbose(__VA_ARGS__)
1818
#else
1919
#define VERBOSE_MISSING_POINT(...) LANGULUS(NOOP)

source/verbs/Select.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#if 0
1313
#define VERBOSE_SELECT(...) Logger::Verbose(__VA_ARGS__)
14-
#define VERBOSE_SELECT_TAB(...) const auto tab = Logger::Verbose(__VA_ARGS__, Logger::Tabs{})
14+
#define VERBOSE_SELECT_TAB(...) const auto tab = Logger::VerboseTab(__VA_ARGS__)
1515
#else
1616
#define VERBOSE_SELECT(...) LANGULUS(NOOP)
1717
#define VERBOSE_SELECT_TAB(...) LANGULUS(NOOP)

0 commit comments

Comments
 (0)