Skip to content

Commit 8e0288e

Browse files
committed
JBMC: minor fix, removing superfluous padding from converter
1 parent 6396d05 commit 8e0288e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ install:
4444
}
4545
if (!(Test-Path jml)) {
4646
& appveyor downloadfile https://github.com/diffblue/java-models-library/archive/master.zip -FileName jml.zip
47-
& 7z x jml.zip
47+
& 7z x jml.zip -odeps/jml
4848
}
4949
cd ..
5050

jbmc/src/java_bytecode/library/converter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ int main(int argc, char *argv[])
6666
printf("\n");
6767
}
6868

69-
std::cout << "\n#define " << varname << "_SIZE " << size << "\n\n";
69+
std::cout << "\n#define " << varname << "_SIZE " << size << "\n";
7070
src.close();
7171
return 0;
7272
}

0 commit comments

Comments
 (0)