commit | 9b82d275c627b1f4f64b5d3c82d54422fe6b5d5a | [log] [tgz] |
---|---|---|
author | Mark Slee <mcslee@apache.org> | 周三 5月 23 05:16:07 2007 +0000 |
committer | Mark Slee <mcslee@apache.org> | 周三 5月 23 05:16:07 2007 +0000 |
tree | 7daf5768bc2619697e08b8e681cd72b52af409c6 | |
parent | 2782d6d205344fc6b02f30c674812bd91bcff2a1 [diff] [blame] |
Get the long longs out of the Thrift codebase Summary: Replace with int64_t and don't worry about what architecture machine you're on, the typedefed int64_t will do the right thing. Reviewed By: aditya, marc git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665123 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/src/concurrency/Thread.h b/lib/cpp/src/concurrency/Thread.h index e928fc4..3e5964f 100644 --- a/lib/cpp/src/concurrency/Thread.h +++ b/lib/cpp/src/concurrency/Thread.h
@@ -55,7 +55,7 @@ public: - typedef unsigned long long id_t; + typedef uint64_t id_t; virtual ~Thread() {};