This function can only be called once. The global main() function provided
by the library normally does it automatically at program startup. */
- static int run(int, char **, void * =0, void (*)(void *) = 0);
+ static int run(int, char **, void * = 0, void (*)(void *) = 0);
/** Sets application startup info, including argv[0] value and platform-
specific data.
try
{
LexicalConverter conv((Fmt()));
- conv<<k;
+ conv << k;
return conv.get();
}
catch(const lexical_error &)
ostream &operator<<(ostream &out, const Backtrace &bt)
{
for(const Backtrace::StackFrame &f: bt.get_frames())
- out<<f<<'\n';
+ out << f << '\n';
return out;
}
ostream &operator<<(ostream &out, const Backtrace::StackFrame &sf)
{
- out<<sf.address;
+ out << sf.address;
if(!sf.symbol.empty())
- out<<" in "<<sf.symbol;
- out<<" from "<<sf.file;
+ out << " in " << sf.symbol;
+ out << " from " << sf.file;
return out;
}
Mode cur_op;
public:
- Buffered(Base &, unsigned =8192);
+ Buffered(Base &, unsigned = 8192);
~Buffered();
virtual void set_block(bool);