私が含まれている場合、私は、次のコンパイルエラーを取得していますブースト/ DATE_TIME/posix_time/posix_time.hpp私のC++のコードコンパイルエラーブーストを使用して:: posix_time
/usr/include/boost/date_time/date_facet.hpp:560: error: declaration of ‘void boost::date_time::date_input_facet <date_type, CharT, InItrT>::special_values_parser(boost::date_time::special_values_parser <date_type, charT>)’ /usr/include/boost/date_time/special_values_parser.hpp:34: error: changes meaning of ‘special_values_parser’ from ‘class boost::date_time::special_values_parser <date_type, charT>’
私はそれが含まれるようにだけ呼び出しだと思いますこれは問題の原因となっています。 1.39.0-9.el5ライブラリ
は、誰もがこの上のアイデアを持って行います。私は、GCC-4.3.4を使用するとx86_64 0を高め、次のコード
#include "boost/date_time/posix_time/posix_time.hpp" class Chrono { public: Chrono() : _startTime(boost::posix_time::microsec_clock::local_time()) { ; } void reset() { _startTime = boost::posix_time::microsec_clock::local_time() ; } boost::posix_time::time_duration elapsed() const { return (boost::posix_time::microsec_clock::local_time() - _startTime) ; } boost::posix_time::ptime _startTime ; };
がありますか?あなたの最初の質問については、事前
投稿する問題を示す最小限の完全な例を掲載する –