diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-09-27 12:33:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 12:33:28 -0400 |
commit | 71e89d6a493e51789008f74f87439611f11c13ab (patch) | |
tree | 02d8ba63b723f3a8aeaf516d0b273cda7c71b113 /indra/llcommon/llpointer.cpp | |
parent | d3833b6d618ff05f44c28eab67bc91ee5a3ba92d (diff) | |
parent | cf2f482ceca796e587dfe2fb8df552c09156fb50 (diff) |
Merge pull request #2714 from secondlife/nat/xcode-16
Clean up llpointer.h per previous discussions.
Diffstat (limited to 'indra/llcommon/llpointer.cpp')
-rwxr-xr-x | indra/llcommon/llpointer.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/indra/llcommon/llpointer.cpp b/indra/llcommon/llpointer.cpp new file mode 100755 index 0000000000..adea447caa --- /dev/null +++ b/indra/llcommon/llpointer.cpp @@ -0,0 +1,26 @@ +/** + * @file llpointer.cpp + * @author Nat Goodspeed + * @date 2024-09-26 + * @brief Implementation for llpointer. + * + * $LicenseInfo:firstyear=2024&license=viewerlgpl$ + * Copyright (c) 2024, Linden Research, Inc. + * $/LicenseInfo$ + */ + +// Precompiled header +#include "linden_common.h" +// associated header +#include "llpointer.h" +// STL headers +// std headers +// external library headers +// other Linden headers +#include "llerror.h" + +void LLPointerBase::wild_dtor(std::string_view msg) +{ +// LL_WARNS() << msg << LL_ENDL; + llassert_msg(false, msg); +} |