summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-12-07 18:15:30 -0500
committerGitHub <noreply@github.com>2018-12-07 18:15:30 -0500
commitf85134021f77e573c1a5f5602940e414a9ab45de (patch)
tree4c2f3d4c0872646bc74d9280bdbea0d737cda463 /src/core/loader/loader.h
parentf761e3ef8627b9f93b9766d6de76a61af7c9e5a9 (diff)
parent01bf329f63446d6dee4e88d75b827970eea037f6 (diff)
Merge pull request #1873 from lioncash/const
loaders: Make GetFileType() a const qualified member function
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r--src/core/loader/loader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index 7686634bf..5390ab9ee 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -131,7 +131,7 @@ public:
* Returns the type of this file
* @return FileType corresponding to the loaded file
*/
- virtual FileType GetFileType() = 0;
+ virtual FileType GetFileType() const = 0;
/**
* Load the application and return the created Process instance