mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 11:31:53 +01:00
more fixes
This commit is contained in:
@@ -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)
|
bool AbstractExtractor::extract(std::size_t pos, std::vector<long>& val)
|
||||||
{
|
{
|
||||||
throw NotImplementedException("std::vector extractor must be implemented.");
|
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.");
|
throw NotImplementedException("std::list extractor must be implemented.");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
bool AbstractExtractor::extract(std::size_t pos, std::vector<bool>& val)
|
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)
|
void AbstractPreparator::prepare(std::size_t pos, const std::vector<long>& val)
|
||||||
{
|
{
|
||||||
throw NotImplementedException("std::vector preparator must be implemented.");
|
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.");
|
throw NotImplementedException("std::list preparator must be implemented.");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
void AbstractPreparator::prepare(std::size_t pos, const std::vector<bool>& val)
|
void AbstractPreparator::prepare(std::size_t pos, const std::vector<bool>& val)
|
||||||
|
|||||||
Reference in New Issue
Block a user