aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-11-15 01:54:12 +0000
committernyamatongwe <devnull@localhost>2001-11-15 01:54:12 +0000
commitbedc366948fe5e3b38d7d058cb53c829406e6ea2 (patch)
tree5b69743d5e1eec0f07667aee70f327373593bda4 /include
parent9fc0dc5140d4299dbf0aed8aead1d89892aa2c00 (diff)
downloadscintilla-mirror-bedc366948fe5e3b38d7d058cb53c829406e6ea2.tar.gz
Changed to a more typesafe definition of ElapsedTime.
Diffstat (limited to 'include')
-rw-r--r--include/Platform.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/Platform.h b/include/Platform.h
index fc0e1fe79..80f5af2e3 100644
--- a/include/Platform.h
+++ b/include/Platform.h
@@ -387,7 +387,8 @@ public:
};
class ElapsedTime {
- double beginTime;
+ long bigBit;
+ long littleBit;
public:
ElapsedTime();
double Duration(bool reset=false);