diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-09-05 14:30:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 14:30:27 -0400 |
commit | 18d81e20f0b0044c16615953d7b69d7fb34d3449 (patch) | |
tree | 2b3f02ad060c0f4a55f2ff8b3ec53dc3f3b8f60b /indra/llcommon/stringize.h | |
parent | 7ac4c3b56e5246fceaa73e7c9c665d3c04827d6c (diff) | |
parent | 49bf86b52459b183d3988388dbb74d8888a71925 (diff) |
Merge pull request #2451 from secondlife/lua-resultset
Give certain `LLInventoryListener` queries an API based on result sets.
Diffstat (limited to 'indra/llcommon/stringize.h')
-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 e712b6cc28..2730728637 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) */ |