Skip to content

Commit b9a7621

Browse files
Run clang-format
1 parent 99992a7 commit b9a7621

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

cli/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#include <iostream>
2-
#include <vector>
32
#include <string_view>
3+
#include <vector>
44

55
#include "cpuscope_lib.hpp"
66

7-
int main(int argc, char *argv[])
7+
int main(int argc, char* argv[])
88
{
99
std::vector<std::string_view> args;
1010
args.reserve(argc);

lib/include/cpuscope_lib.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
namespace cpuscope
1010
{
1111

12-
inline std::string format_message(std::span<const std::string_view> args)
13-
{
14-
return std::format("CPUScope CLI placeholder: {} arguments received.", args.size());
15-
}
12+
inline std::string format_message(std::span<const std::string_view> args)
13+
{
14+
return std::format("CPUScope CLI placeholder: {} arguments received.", args.size());
15+
}
1616

17-
} // namespace cpuscope
17+
} // namespace cpuscope

lib/include/version.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
namespace cpuscope
66
{
77

8-
std::string get_version()
9-
{
10-
return "0.1.0";
11-
}
8+
std::string get_version()
9+
{
10+
return "0.1.0";
11+
}
1212

13-
} // namespace cpuscope
13+
} // namespace cpuscope

lib/src/cpuscope_lib.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
namespace cpuscope
44
{
55

6-
// Implementation is header-only for the initial placeholder functionality.
6+
// Implementation is header-only for the initial placeholder functionality.
77

8-
} // namespace cpuscope
8+
} // namespace cpuscope

0 commit comments

Comments
 (0)