Skip to content

Commit

Permalink
style:
Browse files Browse the repository at this point in the history
  • Loading branch information
misonijnik committed Aug 20, 2024
1 parent 8430a13 commit 6138376
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/Feature/Annotation/General.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ void ptrArg(struct ST, int **a);
int *ptrRet();

int main() {
int *a = (int*) 15;
int *a = (int *)15;
#ifdef PTRARG
struct ST st;
ptrArg(st, &a);
Expand Down
2 changes: 1 addition & 1 deletion test/Feature/MockStrategies.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
// CHECK-4: KLEE: done: completed paths = 2
// CHECK-4: KLEE: done: generated tests = 2

#include <klee/klee.h>
#include <assert.h>
#include <klee/klee.h>

extern int foo(int x, int y);

Expand Down
1 change: 0 additions & 1 deletion unittests/Annotations/AnnotationsTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ TEST(AnnotationsTest, WithOffsetsSimple) {
ASSERT_EQ(actual.at("foo").returnStatements[0]->offset, expectedOffset);
}


#if LLVM_VERSION_CODE < LLVM_VERSION(15, 0)
TEST(AnnotationsTest, WithOffsets) {
const json j = json::parse(R"(
Expand Down

0 comments on commit 6138376

Please sign in to comment.