summaryrefslogtreecommitdiff
path: root/indra/llcommon/llpointer.cpp
blob: adea447caa61aad2c5759fc9c7d932159215706f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
}