summaryrefslogtreecommitdiff
path: root/zen/debug_minidump.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
commit0887aee8c54d0ed51bb2031431e2bcdafebb4c6e (patch)
tree69537ceb9787bb25ac363cc4e6cdaf0804d78363 /zen/debug_minidump.cpp
parent5.12 (diff)
downloadFreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.gz
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.bz2
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.zip
5.13
Diffstat (limited to 'zen/debug_minidump.cpp')
-rw-r--r--zen/debug_minidump.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/debug_minidump.cpp b/zen/debug_minidump.cpp
index 011e1bf2..c229b4aa 100644
--- a/zen/debug_minidump.cpp
+++ b/zen/debug_minidump.cpp
@@ -90,7 +90,7 @@ public:
private:
template <class T>
- static std::string numberToString(const T& number) //convert number to string the C++ way
+ static std::string numberToString(const T& number) //convert number to string the (slow) C++ way
{
std::ostringstream ss;
ss << number;
bgstack15