Update to newer Arbutils.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
772619db0f
commit
61bf868583
|
@ -12,7 +12,7 @@ private:
|
|||
ArbUt::StringView _name;
|
||||
|
||||
public:
|
||||
explicit TestScript(std::string name) : _name(std::move(name)){};
|
||||
explicit TestScript(const std::string& name) : _name(name.c_str(), name.length()){};
|
||||
const ArbUt::StringView& GetName() const noexcept override { return _name; }
|
||||
|
||||
void TestMethod(int& runCount) { runCount++; }
|
||||
|
|
|
@ -12,7 +12,7 @@ private:
|
|||
ArbUt::StringView _name;
|
||||
|
||||
public:
|
||||
explicit TestScript(std::string name) : _name(std::move(name)){};
|
||||
explicit TestScript(const std::string& name) : _name(name.c_str(), name.length()){};
|
||||
const ArbUt::StringView& GetName() const noexcept override { return _name; }
|
||||
};
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ private:
|
|||
ArbUt::StringView _name;
|
||||
|
||||
public:
|
||||
explicit TestScript(std::string name) : _name(std::move(name)){};
|
||||
explicit TestScript(const std::string& name) : _name(name.c_str(), name.length()){};
|
||||
const ArbUt::StringView& GetName() const noexcept override { return _name; }
|
||||
|
||||
void TestMethod(int& runCount) { runCount++; }
|
||||
|
|
Loading…
Reference in New Issue