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