Skip to content

Commit 9b908ca

Browse files
authored
Fixes compile errors around logger statments (#535)
1 parent 797ade3 commit 9b908ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/phasar/PhasarLLVM/DataFlowSolver/IfdsIde/FlowEdgeFunctionCache.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ class FlowEdgeFunctionCache {
283283
PHASAR_LOG_LEVEL(DEBUG, "(F) Callee's : "); for (auto callee
284284
: Callees) {
285285
PHASAR_LOG_LEVEL(DEBUG, " " << Problem.FtoString(callee));
286-
};)
286+
};);
287287
auto Key = std::tie(CallSite, RetSite);
288288
auto SearchCallToRetFlowFunction = CallToRetFlowFunctionCache.find(Key);
289289
if (SearchCallToRetFlowFunction != CallToRetFlowFunctionCache.end()) {

lib/PhasarLLVM/ControlFlow/LLVMBasedICFG.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ LLVMBasedICFG::LLVMBasedICFG(ProjectIRDB *IRDB, CallGraphAnalysisType CGType,
382382
PHASAR_LOG_LEVEL_CAT(
383383
INFO, "LLVMBasedICFG",
384384
"Starting ICFG construction "
385-
<< std::chrono::steady_clock::now().time_since_epoch().count())
385+
<< std::chrono::steady_clock::now().time_since_epoch().count());
386386

387387
B.buildCallGraph(S);
388388

0 commit comments

Comments
 (0)