Skip to content

Commit 2c77d17

Browse files
committed
clang format
1 parent ad6e35d commit 2c77d17

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

xpti/include/xpti/xpti_trace_framework.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,8 @@ class SpinLock {
353353
struct 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

0 commit comments

Comments
 (0)