Skip to content

Commit bfb0ef8

Browse files
committed
style: adapt to clang-format version used by github runner
1 parent 8d6d2f9 commit bfb0ef8

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

inkcpp/include/snapshot.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ namespace ink::runtime
5555
class snapshot
5656
{
5757
public:
58-
virtual ~snapshot() {};
58+
virtual ~snapshot(){};
5959

6060
/** Construct snapshot from blob.
6161
* Memory must be kept valid until the snapshot is deconstructed.

inkcpp/include/story.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace ink::runtime
2525
class story
2626
{
2727
public:
28-
virtual ~story() {};
28+
virtual ~story(){};
2929
#pragma region Interface Methods
3030
/**
3131
* Creates a new global store

inkcpp/snapshot_interface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class value;
2222
class snapshot_interface
2323
{
2424
public:
25-
constexpr snapshot_interface() {};
25+
constexpr snapshot_interface(){};
2626

2727
static unsigned char* snap_write(unsigned char* ptr, const void* data, size_t length, bool write)
2828
{

inkcpp_compiler/reporter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace ink::compiler::internal
3131
{
3232
protected:
3333
reporter();
34-
virtual ~reporter() { }
34+
virtual ~reporter(){}
3535

3636
// sets the results pointer for this reporter
3737
void set_results(compilation_results*);

0 commit comments

Comments
 (0)