commit | 0027cec5aaccc8e53e3dde3c88e1dda21c892d4e | [log] [tgz] |
---|---|---|
author | Sean Callanan <scallanan@apple.com> | Thu Oct 07 18:17:31 2010 +0000 |
committer | Sean Callanan <scallanan@apple.com> | Thu Oct 07 18:17:31 2010 +0000 |
tree | 64898ea0df9b94f9b33ec3915195d4e54ed20b02 | |
parent | 5144f389f9417e106364d7fdbf5631de19ed4fe8 [diff] [blame] |
Changed the timeout for expressions from 10 milliseconds to 10 seconds, which was the original intent. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@115942 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/ClangUserExpression.cpp b/source/Expression/ClangUserExpression.cpp index 888a266..4aabf52 100644 --- a/source/Expression/ClangUserExpression.cpp +++ b/source/Expression/ClangUserExpression.cpp
@@ -281,7 +281,7 @@ struct_address, true, true, - 10000, + 10000000, error_stream, (m_needs_object_ptr ? &object_ptr : NULL));