diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-08-28 15:07:14 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-08-28 15:07:14 -0400 |
commit | 841e19c1cb62341c10254e6f4bf992c0c19d27b8 (patch) | |
tree | aab271038745f66dce6783af98647db015687148 /indra | |
parent | 6f454ad8366ed33bbe199c3fc3ed69e6d3448cec (diff) |
Remove obsolete, unreferenced DESTRINGIZE(), DEWSTRINGIZE() macros.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/stringize.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/indra/llcommon/stringize.h b/indra/llcommon/stringize.h index 63d44a7272..9604d912b5 100644 --- a/indra/llcommon/stringize.h +++ b/indra/llcommon/stringize.h @@ -190,16 +190,4 @@ void destringize_f(std::basic_string<CHARTYPE> const & str, Functor const & f) f(in); } -/** - * DESTRINGIZE(str, item1 >> item2 >> item3 ...) effectively expands to the - * following: - * @code - * std::istringstream in(str); - * in >> item1 >> item2 >> item3 ... ; - * @endcode - */ -#define DESTRINGIZE(STR, EXPRESSION) (destringize_f((STR), [&](auto& in){in >> EXPRESSION;})) -// legacy name, just use DESTRINGIZE() going forward -#define DEWSTRINGIZE(STR, EXPRESSION) DESTRINGIZE(STR, EXPRESSION) - #endif /* ! defined(LL_STRINGIZE_H) */ |