Skip to content

Commit

Permalink
Fix CI?
Browse files Browse the repository at this point in the history
  • Loading branch information
Robadob committed Sep 21, 2024
1 parent cd26362 commit fac14c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
6 changes: 3 additions & 3 deletions src/flamegpu/io/JSONRunPlanReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ class JSONRunPlanReader_impl : public rapidjson::BaseReaderHandler<rapidjson::UT

public:
JSONRunPlanReader_impl(const std::string& _filename, RunPlanVector& _rpv)
: filename(_filename)
, rpv(_rpv)
, current_array_index(0) { }
: current_array_index(0)
, filename(_filename)
, rpv(_rpv) { }
template<typename T>
bool processValue(const T val) {
Mode isArray = Nop;
Expand Down
5 changes: 0 additions & 5 deletions src/flamegpu/io/JSONRunPlanWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,6 @@ void JSONRunPlanWriter::save(const RunPlanVector& rpv, const std::string& output
writer.reset();
buffer.Clear();
}
/**
* Utility method for writing out a single RunPlan
* @param writer An initialised RapidJSON writer.
* @param rp RunPlan to be writer
*/

template <typename T>
void JSONRunPlanWriter::writeRunPlan(std::unique_ptr<T> &writer, const RunPlan &rp) {
Expand Down

0 comments on commit fac14c0

Please sign in to comment.