#include <iomanip>
Go to the source code of this file.
|
| #define | GLOG_TIMESTAMP(timestamp) std::fixed << std::setprecision(9) << timestamp |
| |
| #define | GLOG_DOUBLE(value) std::fixed << std::setprecision(6) << value |
| |
| #define | GLOG_DOUBLE_WITH_PRECISION(value, precision) std::fixed << std::setprecision(precision) << value |
| |
| #define | UNUSED(x) (void)(x) |
| |
◆ GLOG_DOUBLE
| #define GLOG_DOUBLE |
( |
|
value | ) |
std::fixed << std::setprecision(6) << value |
◆ GLOG_DOUBLE_WITH_PRECISION
| #define GLOG_DOUBLE_WITH_PRECISION |
( |
|
value, |
|
|
|
precision |
|
) |
| std::fixed << std::setprecision(precision) << value |
◆ GLOG_TIMESTAMP
| #define GLOG_TIMESTAMP |
( |
|
timestamp | ) |
std::fixed << std::setprecision(9) << timestamp |
◆ UNUSED
| #define UNUSED |
( |
|
x | ) |
(void)(x) |