File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -353,8 +353,8 @@ class SpinLock {
353353struct finally {
354354 std::function<void ()> MFunc;
355355
356- finally (const finally&) = default ;
357- finally& operator =(const finally&) = default ;
356+ finally (const finally &) = default ;
357+ finally & operator =(const finally &) = default ;
358358 ~finally () {
359359 if (xptiTraceEnabled ())
360360 MFunc ();
@@ -667,8 +667,8 @@ class stash_tuple {
667667
668668 // Copy and copy assignment are deleted since we dont want to stash the same
669669 // key-value pair multiple times
670- stash_tuple (const stash_tuple&) = delete ;
671- stash_tuple& operator =(const stash_tuple&) = delete ;
670+ stash_tuple (const stash_tuple &) = delete ;
671+ stash_tuple & operator =(const stash_tuple &) = delete ;
672672
673673 // / @brief Destroys the stash_tuple object and unstashes the key-value pair if
674674 // / it was stashed successfully earlier.
@@ -1624,7 +1624,7 @@ class tracepoint_t {
16241624 }
16251625
16261626 tracepoint_t (const tracepoint_t &) = delete ;
1627- tracepoint_t & operator =(const tracepoint_t &) = delete ;
1627+ tracepoint_t & operator =(const tracepoint_t &) = delete ;
16281628
16291629 ~tracepoint_t () {
16301630 // If tracing is not enabled, don't do anything
You can’t perform that action at this time.
0 commit comments