summaryrefslogtreecommitdiff
path: root/indra/newview/llfloatertoybox.cpp
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2011-12-01 16:50:27 -0500
committerNat Goodspeed <nat@lindenlab.com>2011-12-01 16:50:27 -0500
commit95fb0249e9f43d907608cc5840d1f8c0e49981d0 (patch)
tree01c39992a96522b9e871e0e94c6b83ffb54dc542 /indra/newview/llfloatertoybox.cpp
parente97fb23218734d1fbda87eedd7659235777a69ae (diff)
LLSD-14: Move LLSD::(outstanding|allocation)Count() to free functions.
Free functions can be unconditionally compiled into the .o file, but conditionally hidden in the header file. Static class methods don't have that flexibility: without a declaration in the header file, you can't compile a function definition in the .cpp file. That makes it awkward to use the same llcommon build for production and for unit tests. Why make the function declarations conditional at all? These are debugging functions. They break the abstraction, they peek under the covers. Production code should not use them. Making them conditional on an #ifdef symbol in the unit-test source file means the compiler would reject any use by production code. Put differently, it allows us to assert with confidence that only unit tests do use them. Put new free functions in (lowercase) llsd namespace so as not to clutter global namespace. Tweak the one known consumer (llsd_new_tut.cpp) accordingly.
Diffstat (limited to 'indra/newview/llfloatertoybox.cpp')
0 files changed, 0 insertions, 0 deletions