mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
more fixes
This commit is contained in:
parent
aa46e9b6e4
commit
3c214ed17e
@ -174,6 +174,7 @@ bool AbstractExtractor::extract(std::size_t pos, std::list<Poco::UInt64>& val)
|
||||
}
|
||||
|
||||
|
||||
#ifndef POCO_INT64_IS_LONG
|
||||
bool AbstractExtractor::extract(std::size_t pos, std::vector<long>& val)
|
||||
{
|
||||
throw NotImplementedException("std::vector extractor must be implemented.");
|
||||
@ -190,6 +191,7 @@ bool AbstractExtractor::extract(std::size_t pos, std::list<long>& val)
|
||||
{
|
||||
throw NotImplementedException("std::list extractor must be implemented.");
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
bool AbstractExtractor::extract(std::size_t pos, std::vector<bool>& val)
|
||||
|
@ -175,6 +175,7 @@ void AbstractPreparator::prepare(std::size_t pos, const std::list<Poco::UInt64>&
|
||||
}
|
||||
|
||||
|
||||
#ifndef POCO_INT64_IS_LONG
|
||||
void AbstractPreparator::prepare(std::size_t pos, const std::vector<long>& val)
|
||||
{
|
||||
throw NotImplementedException("std::vector preparator must be implemented.");
|
||||
@ -191,6 +192,7 @@ void AbstractPreparator::prepare(std::size_t pos, const std::list<long>& val)
|
||||
{
|
||||
throw NotImplementedException("std::list preparator must be implemented.");
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
void AbstractPreparator::prepare(std::size_t pos, const std::vector<bool>& val)
|
||||
|
Loading…
Reference in New Issue
Block a user