Сегодня я перестроил свое приложение на C++ и не удалось выполнить компиляцию. Однако ничего не изменилось. Первая ошибка была в моем классе List
который наследуется от std::vector
(частного наследования) здесь:Ошибка компиляции в Boost librairies (program_options)
template<typename T> void List<T>::append(const T& value)
{
push_back(value);
}
мне пришлось добавить std::vector<T>::
до того push_back(value);
, потому что никаких заявлений не были найдены компилятором. Я не знаю, почему это происходит, но было обновление g ++, теперь я использую g ++ v4.7.0 (preerelease) с использованием C++ 11 в Arch Linux.
Я исправил эту проблему, но теперь реальная проблема заключается в том, что я не могу скомпилировать остальную часть приложения из-за проблемы в библиотеке Boost program_options
. Я включать библиотеку с:
#include <boost/config.hpp>
#include <boost/program_options/detail/config_file.hpp>
#include <boost/program_options/parsers.hpp>
ошибки:
g++ -m64 -pipe -pedantic -Wextra -std=gnu++0x -c -g -Wall -DDEBUG -DDEV -DMYSQL_SUPPORT -I. -IHeaders -MMD -MP -MF build/Debug/GNU-Linux-x86/Sources/Libs/Settings.o.d -o build/Debug/GNU-Linux-x86/Sources/Libs/Settings.o Sources/Libs/Settings.cpp
/usr/include/boost/program_options/detail/config_file.hpp: In instantiation of ‘bool boost::program_options::detail::basic_config_file_iterator<charT>::getline(std::string&) [with charT = char; std::string = std::basic_string<char>]’:
In file included from Sources/Libs/Settings.cpp:33:0:
Sources/Libs/Settings.cpp:69:24: required from here
/usr/include/boost/program_options/detail/config_file.hpp:163:13: erreur: ‘to_internal’ was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
In file included from /usr/include/boost/program_options/detail/parsers.hpp:9:0,
from /usr/include/boost/program_options/parsers.hpp:265,
from Sources/Libs/Settings.cpp:34:
/usr/include/boost/program_options/detail/convert.hpp:75:34: note: ‘template<class T> std::vector<std::basic_string<char> > boost::program_options::to_internal(const std::vector<T>&)’ declared here, later in the translation unit
те же ошибки, чем с моим классом List ...
Спасибо!