diff options
author | Stephen D. Huston <shuston@apache.org> | 2008-11-05 16:41:49 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2008-11-05 16:41:49 +0000 |
commit | 7f272c99e485eaa8eb38ac9b28d82637aeb4dbbc (patch) | |
tree | 961beb3444880922ef04ee673f708bcfc6687b26 | |
parent | 43a66c59e492e0fe91922f63e5d4e8b28f10a638 (diff) | |
download | qpid-python-7f272c99e485eaa8eb38ac9b28d82637aeb4dbbc.tar.gz |
Add missing IntegerTypes.h include; fixes QPID-1436
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@711609 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-x | cpp/rubygen/framing.0-10/constants.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/rubygen/framing.0-10/constants.rb b/cpp/rubygen/framing.0-10/constants.rb index fa46751f7a..d8f8354dff 100755 --- a/cpp/rubygen/framing.0-10/constants.rb +++ b/cpp/rubygen/framing.0-10/constants.rb @@ -52,6 +52,7 @@ class ConstantsGen < CppGen path="#{@dir}/TypeCode" h_file(path) { include("<iosfwd>") + include("\"qpid/sys/IntegerTypes.h\"") namespace(@namespace) { scope("enum TypeCode {", "};") { genl @amqp.types.map { |t| "#{typecode_enum t} = #{t.code}" if t.code }.compact.join(",\n") |