summaryrefslogtreecommitdiffstats
path: root/ingen/Log.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-01 14:28:50 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 01:48:48 +0200
commit6a1ce7d1ee5e6f20aa011fe994341d9d79ac35ea (patch)
treee541fcd73c05f2338840f1fcfa36dcb6a0d8895d /ingen/Log.hpp
parent7fe8260c6c0a53fdc9ba04130c577122402a82ec (diff)
downloadingen-6a1ce7d1ee5e6f20aa011fe994341d9d79ac35ea.tar.gz
ingen-6a1ce7d1ee5e6f20aa011fe994341d9d79ac35ea.tar.bz2
ingen-6a1ce7d1ee5e6f20aa011fe994341d9d79ac35ea.zip
Make member functions const or static where possible
Diffstat (limited to 'ingen/Log.hpp')
-rw-r--r--ingen/Log.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ingen/Log.hpp b/ingen/Log.hpp
index 0a04c8f0..e6bc2b39 100644
--- a/ingen/Log.hpp
+++ b/ingen/Log.hpp
@@ -93,7 +93,7 @@ public:
void set_sink(Sink s) { _sink = s; }
private:
- void print(FILE* stream, const std::string& msg);
+ void print(FILE* stream, const std::string& msg) const;
LV2_Log_Log* _log;
URIs& _uris;