Skip to content

Commit cfe2a4a

Browse files
author
Asger Gitz-Johansen
committed
Print empty array if empty trace
1 parent b23b920 commit cfe2a4a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AALTITOAD Changelog
2-
This Changelog contains the changes since last release.
2+
This Changelog contains the changes since last release. (Updates happen when releasing)
33
- [Added](https://github.com/sillydan1/AALTITOAD/pull/26) CI via github actions
44
- [Added](https://github.com/sillydan1/AALTITOAD/pull/27) fischer-2/5/10 mutex variants for testing
55
- [Added](https://github.com/sillydan1/AALTITOAD/pull/13) an attempt to fix hash-collision issue

CMakeLists.txt

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

1717
# 3.16+ because of target_precompiled_header
1818
cmake_minimum_required(VERSION 3.16)
19-
project(aaltitoad VERSION 0.9.1)
19+
project(aaltitoad VERSION 0.9.2)
2020
configure_file(src/config.h.in config.h)
2121
set(THREADS_PREFER_PTHREAD_FLAG ON)
2222
find_package(Threads REQUIRED)

src/verifier/ReachabilitySearcher.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ auto ReachabilitySearcher::PrintResults(const std::vector<QueryResultPair>& resu
138138
}
139139
if(trace.empty()) {
140140
spdlog::info("No trace available");
141+
printf("[]\n"); // TODO: This should be able to print to a file
141142
continue;
142143
}
143144
spdlog::info("Trace:");

0 commit comments

Comments
 (0)