Multiline: Remove static function from header

This commit is contained in:
Joshua Baker 2024-12-27 17:46:10 -06:00
parent 784f6b97de
commit 150ff5d799

View file

@ -4,7 +4,6 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include <memory> #include <memory>
#include <expected>
struct SHandler { struct SHandler {
std::string name = ""; std::string name = "";
@ -71,8 +70,6 @@ enum eGetNextLineFailure : uint8_t {
GETNEXTLINEFAILURE_BACKSLASH, GETNEXTLINEFAILURE_BACKSLASH,
}; };
static std::expected<std::string, eGetNextLineFailure> getNextLine(std::istream& str, int &rawLineNum, int &lineNum);
class CConfigImpl { class CConfigImpl {
public: public:
std::string path = ""; std::string path = "";