summaryrefslogtreecommitdiffstats
path: root/include/ingen/Library.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/ingen/Library.hpp')
-rw-r--r--include/ingen/Library.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/ingen/Library.hpp b/include/ingen/Library.hpp
index 4cee985f..99dfff4c 100644
--- a/include/ingen/Library.hpp
+++ b/include/ingen/Library.hpp
@@ -17,8 +17,8 @@
#ifndef INGEN_LIBRARY_HPP
#define INGEN_LIBRARY_HPP
-#include "ingen/FilePath.hpp"
-#include "ingen/ingen.h"
+#include <ingen/FilePath.hpp>
+#include <ingen/ingen.h>
namespace ingen {
@@ -26,7 +26,7 @@ namespace ingen {
class INGEN_API Library
{
public:
- Library(const FilePath& path);
+ explicit Library(const FilePath& path);
~Library();
Library(const Library&) = delete;
@@ -40,7 +40,7 @@ public:
static const char* get_last_error();
- operator bool() const { return _lib; }
+ explicit operator bool() const { return _lib; }
private:
void* _lib;