Skip to content

Commit

Permalink
tracking issue for c++20
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianbs96 committed Oct 21, 2024
1 parent 844b1ff commit 3b2ff2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/phasar/DataFlow/IfdsIde/Solver/FlowFunctionCache.h
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ class FlowFunctionCache
void dumpStats(llvm::raw_ostream &OS) const { OS << getStats(); }

[[nodiscard]] FlowFunctionCacheStats getStats() const noexcept {
/// TODO: With C++20 use designated aggregate initializers here!
/// TODO (#734): With C++20 use designated aggregate initializers here!
return FlowFunctionCacheStats{
NormalFFCache.size(), CallFFCache.size(), RetFFCache.size(),
SimpleRetFFCache.size(), CtrFFCache.size(), SummaryFFCache.size(),
Expand Down
4 changes: 2 additions & 2 deletions include/phasar/DataFlow/IfdsIde/Solver/GenericSolverResults.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@

namespace psr {

/// XXX: When upgrading to C++20, create a concept checking valid SolverResults
/// types
/// XXX (#734): When upgrading to C++20, create a concept checking valid
/// SolverResults types

/// A type-erased version of the main functionality of SolverResults.
/// Can be accepted by consumers that don't need deep access to the internals
Expand Down

0 comments on commit 3b2ff2d

Please sign in to comment.