今日私はC++アプリケーションを再構築してコンパイルに失敗しました。しかし、何も変わっていない。最初のエラーは、ここにstd::vector
(private継承)を継承する私のクラスList
にあった:Boost librairies(program_options)のコンパイルが失敗する
template<typename T> void List<T>::append(const T& value)
{
push_back(value);
}
私は何の宣言は、コンパイラによって発見されなかったためpush_back(value);
前std::vector<T>::
を追加する必要がありました。なぜそれが起こったのか分かりませんが、g ++のアップデートがありました。私は現在、Arch LinuxでC++ 11を使ってg ++ v4.7.0(試用版)を使用しています。
問題を修正しましたが、実際の問題は、Boostライブラリの問題のためにアプリケーションの残りの部分をコンパイルできないことです。program_options
ありがとう...
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クラスと比べて同じエラー:
#include <boost/config.hpp>
#include <boost/program_options/detail/config_file.hpp>
#include <boost/program_options/parsers.hpp>
エラー:私は、ライブラリを含めます!