Skip to content

Commit ca186c6

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 17b459f commit ca186c6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

include/TimerControl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class TimerControl {
99
public:
10-
TimerControl(){};
10+
TimerControl() {};
1111
void CreateFile(const char* filename, int rank);
1212
void WriteProfile(const char* func_name, long long start, long long end, uint32_t thread_id);
1313

include/define_command.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ class define_command {
2222
void write_to_file(const char* format, ...);
2323

2424
public:
25-
define_command() : m_Undefine(true){};
26-
define_command(const std::string& output_filename) : m_OutputFileName(output_filename), m_Undefine(true){};
25+
define_command() : m_Undefine(true) {};
26+
define_command(const std::string& output_filename) : m_OutputFileName(output_filename), m_Undefine(true) {};
2727
std::array<bool, 2> run(const std::string& command = std::string(""));
2828
};
2929

include/magic_command.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class MagicCommand {
2828
int get_func_status(const std::string& funcname);
2929

3030
public:
31-
MagicCommand() : m_Command(""), m_Undefine(true), m_OutputData(){};
31+
MagicCommand() : m_Command(""), m_Undefine(true), m_OutputData() {};
3232
OutputData& run(const std::string& command = std::string(""));
3333
};
3434

0 commit comments

Comments
 (0)