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 {
353
353
struct finally {
354
354
std::function<void ()> MFunc;
355
355
356
- finally (const finally&) = default ;
357
- finally& operator =(const finally&) = default ;
356
+ finally (const finally &) = default ;
357
+ finally & operator =(const finally &) = default ;
358
358
~finally () {
359
359
if (xptiTraceEnabled ())
360
360
MFunc ();
@@ -667,8 +667,8 @@ class stash_tuple {
667
667
668
668
// Copy and copy assignment are deleted since we dont want to stash the same
669
669
// 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 ;
672
672
673
673
// / @brief Destroys the stash_tuple object and unstashes the key-value pair if
674
674
// / it was stashed successfully earlier.
@@ -1624,7 +1624,7 @@ class tracepoint_t {
1624
1624
}
1625
1625
1626
1626
tracepoint_t (const tracepoint_t &) = delete ;
1627
- tracepoint_t & operator =(const tracepoint_t &) = delete ;
1627
+ tracepoint_t & operator =(const tracepoint_t &) = delete ;
1628
1628
1629
1629
~tracepoint_t () {
1630
1630
// If tracing is not enabled, don't do anything
You can’t perform that action at this time.
0 commit comments