mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
Binding compilation fix
This commit is contained in:
parent
d6ace3c20a
commit
979749490a
@ -379,7 +379,7 @@ public:
|
||||
const std::string& name = "",
|
||||
Direction direction = PD_IN):
|
||||
AbstractBinding(name, direction),
|
||||
_pVal(new std::vector<T>(val))
|
||||
_pVal(new std::vector<T>(val)),
|
||||
_begin(),
|
||||
_end()
|
||||
/// Creates the Binding.
|
||||
@ -660,7 +660,7 @@ public:
|
||||
const std::string& name = "",
|
||||
Direction direction = PD_IN):
|
||||
AbstractBinding(name, direction),
|
||||
_pVal(new std::list<T>(val))
|
||||
_pVal(new std::list<T>(val)),
|
||||
_begin(),
|
||||
_end()
|
||||
/// Creates the Binding.
|
||||
|
Loading…
Reference in New Issue
Block a user