From 76e44a0c48526d20efccba32b919b391404887d2 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Wed, 26 Jun 2019 21:34:36 +0900 Subject: [PATCH] refactor: remove needless inline specifier --- toml/parser.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toml/parser.hpp b/toml/parser.hpp index a7cf57e..d70282a 100644 --- a/toml/parser.hpp +++ b/toml/parser.hpp @@ -1973,7 +1973,7 @@ parse(std::istream& is, const std::string& fname = "unknown file") template class Table = std::unordered_map, template class Array = std::vector> -inline basic_value parse(const std::string& fname) +basic_value parse(const std::string& fname) { std::ifstream ifs(fname.c_str(), std::ios_base::binary); if(!ifs.good())