Cppcheck: change argument to reference

sql-rework
Tomasz Golinski 2020-07-06 13:56:59 +02:00
rodzic 99e322d2a3
commit c8d6c6f3fc
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -40,7 +40,7 @@ private:
std::map<std::string, ContourData*> parse_geojson(const std::string& json_file);
public:
Region(ContourData* contour, std::string name) : contour(contour), name(name) {}
Region(ContourData* contour, const std::string& name) : contour(contour), name(name) {}
Region(const std::filesystem::path& geojson, const std::filesystem::path& geojson_sub);
~Region();