マニピュレータのリストを関数に渡したいのですが、次のようになります。
void print(const vector<std::smanip>& manips) {
// ...
for (auto m : manips)
cout << m;
// ...
}
これは、理想的には次のようなコードで呼び出されます。
some_object.print({std::fixed, std::setprecision(2)}));
g ++ 4.7.0によると:
error: ‘std::smanip’ has not been declared
どうやら、smanip
標準では実際には定義されておらず、C++11コンパイラはマニピュレータのタイプに明示的な名前を指定する必要はありません。次のように、既知のマニピュレータからリーチしてタイプを宣言してみました。
typedef decltype(std::fixed) manip;
これにより、次のような多くの新しいエラーメッセージが表示されました。
error: ‘const _Tp* __gnu_cxx::new_allocator< <template-parameter-1-1>
>::address(__gnu_cxx::new_allocator< <template-parameter-1-1> >::const_reference)
const [with _Tp = std::ios_base&(std::ios_base&); __gnu_cxx::new_allocator<
<template-parameter-1-1> >::const_pointer = std::ios_base& (*)(std::ios_base&);
__gnu_cxx::new_allocator< <template-parameter-1-1> >::const_reference =
std::ios_base& (&)(std::ios_base&)]’ cannot be overloaded
今すぐあきらめるべきですか、それともこれを行う方法はありますか?