1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-29 13:04:28 +01:00

Add missing stdexcept include in routing_utils.cpp

This commit is contained in:
Matias Fontanini
2017-04-30 20:09:47 -07:00
parent d9f92c46c4
commit 1ec6006f33
3 changed files with 5 additions and 3 deletions

View File

@@ -162,12 +162,12 @@ public:
/**
* Dereference and get the stored PDU
*/
value_type operator*();
PDU& operator*();
/**
* Dereference and get the stored PDU
*/
const value_type operator*() const;
const PDU& operator*() const;
private:
pointer pdu_;
};