diff options
author | nyamatongwe <unknown> | 2001-11-15 01:54:12 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-11-15 01:54:12 +0000 |
commit | 58b5ae4eb93b3e931710d337c1345694ad72485a (patch) | |
tree | 5b69743d5e1eec0f07667aee70f327373593bda4 /include/Platform.h | |
parent | 2801a41a40ede9c6aa37cd505697ae9d498fbd78 (diff) | |
download | scintilla-mirror-58b5ae4eb93b3e931710d337c1345694ad72485a.tar.gz |
Changed to a more typesafe definition of ElapsedTime.
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 3 |
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); |