Skip to content
Snippets Groups Projects
Commit b4eb17db authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Ensure LLTimer is trivially copyable

parent 3d099adc
No related branches found
No related tags found
No related merge requests found
...@@ -282,9 +282,6 @@ LLTimer::LLTimer() ...@@ -282,9 +282,6 @@ LLTimer::LLTimer()
reset(); reset();
} }
LLTimer::~LLTimer()
{}
// static // static
void LLTimer::initClass() void LLTimer::initClass()
{ {
......
...@@ -60,7 +60,7 @@ class LL_COMMON_API LLTimer ...@@ -60,7 +60,7 @@ class LL_COMMON_API LLTimer
public: public:
LLTimer(); LLTimer();
~LLTimer(); ~LLTimer() = default;
static void initClass(); static void initClass();
static void cleanupClass(); static void cleanupClass();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment