summaryrefslogtreecommitdiffstats
path: root/src/URI.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-12-08 19:40:27 +0100
committerDavid Robillard <d@drobilla.net>2019-12-08 21:08:24 +0100
commit484665f577267dac4ccd722bc28239a73c6efdb4 (patch)
tree2213a1fc015c1e06e056ec081256b46042d38b87 /src/URI.cpp
parent6f1277f261a0fed20af10a8ee5804ee694962550 (diff)
downloadingen-484665f577267dac4ccd722bc28239a73c6efdb4.tar.gz
ingen-484665f577267dac4ccd722bc28239a73c6efdb4.tar.bz2
ingen-484665f577267dac4ccd722bc28239a73c6efdb4.zip
Cleanup: Add missing explicit initialisations
Diffstat (limited to 'src/URI.cpp')
-rw-r--r--src/URI.cpp30
1 files changed, 18 insertions, 12 deletions
diff --git a/src/URI.cpp b/src/URI.cpp
index 5222c055..67a26ee9 100644
--- a/src/URI.cpp
+++ b/src/URI.cpp
@@ -23,35 +23,39 @@
namespace ingen {
URI::URI()
- : _node(SERD_NODE_NULL)
- , _uri(SERD_URI_NULL)
+ : _uri(SERD_URI_NULL)
+ , _node(SERD_NODE_NULL)
{}
URI::URI(const std::string& str)
- : _node(serd_node_new_uri_from_string((const uint8_t*)str.c_str(),
+ : _uri(SERD_URI_NULL)
+ , _node(serd_node_new_uri_from_string((const uint8_t*)str.c_str(),
nullptr,
&_uri))
{}
URI::URI(const char* str)
- : _node(serd_node_new_uri_from_string((const uint8_t*)str, nullptr, &_uri))
+ : _uri(SERD_URI_NULL)
+ , _node(serd_node_new_uri_from_string((const uint8_t*)str, nullptr, &_uri))
{}
URI::URI(const std::string& str, const URI& base)
- : _node(serd_node_new_uri_from_string((const uint8_t*)str.c_str(),
+ : _uri(SERD_URI_NULL)
+ , _node(serd_node_new_uri_from_string((const uint8_t*)str.c_str(),
&base._uri,
&_uri))
{}
URI::URI(SerdNode node)
- : _node(serd_node_new_uri_from_node(&node, nullptr, &_uri))
+ : _uri(SERD_URI_NULL)
+ , _node(serd_node_new_uri_from_node(&node, nullptr, &_uri))
{
assert(node.type == SERD_URI);
}
URI::URI(SerdNode node, SerdURI uri)
- : _node(node)
- , _uri(uri)
+ : _uri(uri)
+ , _node(node)
{
assert(node.type == SERD_URI);
}
@@ -62,14 +66,16 @@ URI::URI(const Sord::Node& node)
}
URI::URI(const FilePath& path)
- : _node(serd_node_new_file_uri((const uint8_t*)path.c_str(),
+ : _uri(SERD_URI_NULL)
+ , _node(serd_node_new_file_uri((const uint8_t*)path.c_str(),
nullptr,
&_uri,
true))
{}
URI::URI(const URI& uri)
- : _node(serd_node_new_uri(&uri._uri, nullptr, &_uri))
+ : _uri(SERD_URI_NULL)
+ , _node(serd_node_new_uri(&uri._uri, nullptr, &_uri))
{}
URI&
@@ -81,8 +87,8 @@ URI::operator=(const URI& uri)
}
URI::URI(URI&& uri) noexcept
- : _node(uri._node)
- , _uri(uri._uri)
+ : _uri(uri._uri)
+ , _node(uri._node)
{
uri._node = SERD_NODE_NULL;
uri._uri = SERD_URI_NULL;