Skip to content
Snippets Groups Projects

Switch integer values to int32

Merged Daniel Hornung requested to merge f-int32 into dev
4 files
+ 53
0
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -365,6 +365,10 @@ public:
[[nodiscard]] inline auto GetStatus() const noexcept -> TransactionStatus { return this->status; }
[[nodiscard]] inline auto GetResultSet() const noexcept -> const ResultSet & {
if (!this->result_set) {
this->result_set = std::make_unique<MultiResultSet>(
std::move(std::vector<std::unique_ptr<Entity>>()));
}
return *(this->result_set.get());
}
Loading