summaryrefslogtreecommitdiffstats
path: root/include/ingen/client
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-18 02:04:26 -0400
committerDavid Robillard <d@drobilla.net>2022-08-18 02:04:26 -0400
commit721659fa043a02740146ca82ed261066fcbb1077 (patch)
tree7c97d03342db7ae2226351b2f005f7fbbfecc38d /include/ingen/client
parent9994cdebb60ecffcf81ced46ccfd12968ea3b2da (diff)
downloadingen-721659fa043a02740146ca82ed261066fcbb1077.tar.gz
ingen-721659fa043a02740146ca82ed261066fcbb1077.tar.bz2
ingen-721659fa043a02740146ca82ed261066fcbb1077.zip
Remove redundant "inline" specifiers
Diffstat (limited to 'include/ingen/client')
-rw-r--r--include/ingen/client/PortModel.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/ingen/client/PortModel.hpp b/include/ingen/client/PortModel.hpp
index 9323b84b..903a435d 100644
--- a/include/ingen/client/PortModel.hpp
+++ b/include/ingen/client/PortModel.hpp
@@ -48,10 +48,10 @@ public:
bool supports(const URIs::Quark& value_type) const;
- inline uint32_t index() const { return _index; }
- inline const Atom& value() const { return get_property(_uris.ingen_value); }
- inline bool is_input() const { return (_direction == Direction::INPUT); }
- inline bool is_output() const { return (_direction == Direction::OUTPUT); }
+ uint32_t index() const { return _index; }
+ const Atom& value() const { return get_property(_uris.ingen_value); }
+ bool is_input() const { return (_direction == Direction::INPUT); }
+ bool is_output() const { return (_direction == Direction::OUTPUT); }
bool port_property(const URIs::Quark& uri) const;
@@ -65,7 +65,7 @@ public:
}
bool is_uri() const;
- inline bool operator==(const PortModel& pm) const { return (path() == pm.path()); }
+ bool operator==(const PortModel& pm) const { return (path() == pm.path()); }
void on_property(const URI& uri, const Atom& value) override;