Fix tab in documentation (refs #7065)

[SVN r79363]
This commit is contained in:
Antony Polukhin
2012-07-08 17:59:50 +00:00
parent 093e298c9d
commit fe79553bf8

View File

@@ -75,7 +75,7 @@ Following example converts some number and puts it to file:
int i;
FILE* file;
...
typedef boost::array<char, 50> buf_t; // You can use std::array if your compiler supports it
typedef boost::array<char, 50> buf_t; // You can use std::array if your compiler supports it
buf_t buffer = boost::lexical_cast<buf_t>(i); // No dynamic memory allocation
puts(buffer.begin(), file);
``