summaryrefslogtreecommitdiff
path: root/netconf
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2015-03-20 13:32:31 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2015-03-20 13:32:31 -0700
commit96737368aad93685176635c70ee1cd9383622c28 (patch)
tree5bc1cb8138700c3c8410f158f7de29851c5cfa9c /netconf
parent7ee1a1151f71bfdc3e35e8e055cb1699106131bc (diff)
downloadinfinitytier-96737368aad93685176635c70ee1cd9383622c28.tar.gz
infinitytier-96737368aad93685176635c70ee1cd9383622c28.zip
Add MIT-licensed Joyent http-parser lib to ext/ for use with new control plane.
Diffstat (limited to 'netconf')
-rw-r--r--netconf/SqliteNetworkConfigMaster.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/netconf/SqliteNetworkConfigMaster.hpp b/netconf/SqliteNetworkConfigMaster.hpp
index b2028ab5..07388e61 100644
--- a/netconf/SqliteNetworkConfigMaster.hpp
+++ b/netconf/SqliteNetworkConfigMaster.hpp
@@ -98,7 +98,7 @@ public:
public:
DBC(SqliteNetworkConfigMaster &nc) : _p(&nc) { nc._lock.lock(); }
~DBC() { _p->_lock.unlock(); }
- inline sqlite3 *operator*() { return _p->_db; }
+ inline sqlite3 *operator*() const throw() { return _p->_db; }
private:
SqliteNetworkConfigMaster *const _p;
};