summaryrefslogtreecommitdiffstats
path: root/src/UIFile.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/UIFile.hpp')
-rw-r--r--src/UIFile.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/UIFile.hpp b/src/UIFile.hpp
index 38a46b1..cd07aad 100644
--- a/src/UIFile.hpp
+++ b/src/UIFile.hpp
@@ -24,7 +24,7 @@ namespace patchage {
class UIFile
{
public:
- inline static bool is_readable(const std::string& filename)
+ static bool is_readable(const std::string& filename)
{
std::ifstream fs(filename.c_str());
const bool fail = fs.fail();