summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2012-11-27 21:51:51 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2012-11-27 21:51:51 +0000
commit9bf2e6780e91fd7a56f639dca29b882bb9ceec02 (patch)
tree6d19de84455ad5a42a2331e79ea946318cc7f549
parentb3c6f491f7378622fdb20e12a0f105ce67832787 (diff)
downloadATCD-9bf2e6780e91fd7a56f639dca29b882bb9ceec02.tar.gz
ChangeLogTag: Tue Nov 27 21:50:14 UTC 2012 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/TAO_IDL/ast/ast_module.cpp3
-rw-r--r--TAO/tests/IDL_Test/PEMNaming.idl52
-rw-r--r--TAO/tests/IDL_Test/loader_const.idl7
4 files changed, 41 insertions, 29 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 3609cb048b0..6c7ccf93491 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Tue Nov 27 21:50:14 UTC 2012 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * tests/IDL_Test/loader_const.idl:
+ * tests/IDL_Test/PEMNaming.idl:
+ * TAO_IDL/ast/ast_module.cpp:
+
+ Fixed fuzz errors.
+
Tue Nov 27 12:43:30 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Logging_Service/Basic_Logging_Service/Basic_Logging_Service.mpc:
diff --git a/TAO/TAO_IDL/ast/ast_module.cpp b/TAO/TAO_IDL/ast/ast_module.cpp
index 7594a0c71f7..bcd6c6c036c 100644
--- a/TAO/TAO_IDL/ast/ast_module.cpp
+++ b/TAO/TAO_IDL/ast/ast_module.cpp
@@ -642,4 +642,5 @@ void
AST_Module::reset_last_in_same_parent_scope (void)
{
this->last_in_same_parent_scope_ = this;
-} \ No newline at end of file
+}
+
diff --git a/TAO/tests/IDL_Test/PEMNaming.idl b/TAO/tests/IDL_Test/PEMNaming.idl
index 52069315e1c..a625877053d 100644
--- a/TAO/tests/IDL_Test/PEMNaming.idl
+++ b/TAO/tests/IDL_Test/PEMNaming.idl
@@ -1,3 +1,4 @@
+// $Id$
#ifndef _PEM_NAMING_IDL_
#define _PEM_NAMING_IDL_
@@ -8,53 +9,52 @@ module Plesk
enum TBool
{
- TB_NO,
- TB_YES,
- TB_MAYBE
+ TB_NO,
+ TB_YES,
+ TB_MAYBE
};
struct TProperty
{
- string name;
- string value;
+ string name;
+ string value;
};
typedef sequence<TProperty> TPropertyList;
exception ExSystem
{
- string module_id;
- long extype_id;
- long errcode;
- long errcode_minor;
- string errmsg;
- TPropertyList props;
- TBool transient;
+ string module_id;
+ long extype_id;
+ long errcode;
+ long errcode_minor;
+ string errmsg;
+ TPropertyList props;
+ TBool transient;
};
module Naming
{
-
- struct NamingContext
+ struct NamingContext
{
- string kernel_resolver_ior;
- };
+ string kernel_resolver_ior;
+ };
- const long ERR_NO_SUCH_OBJ = 6; // don't change it
- // reserved for Naming
+ const long ERR_NO_SUCH_OBJ = 6; // don't change it
+ // reserved for Naming
- interface ObjectResolver
+ interface ObjectResolver
{
# pragma version ObjectResolver 1.2
- Object
- resolve(in string service_type, inout TObjectID sc_id)
- raises (ExSystem);
+ Object
+ resolve (in string service_type, inout TObjectID sc_id)
+ raises (ExSystem);
- Object
- resolve_sc(in string service_type, in string version, inout TObjectID sc_id)
- raises (ExSystem);
- };
+ Object
+ resolve_sc (in string service_type, in string version, inout TObjectID sc_id)
+ raises (ExSystem);
+ };
}; // module Naming
}; // module Plesk
diff --git a/TAO/tests/IDL_Test/loader_const.idl b/TAO/tests/IDL_Test/loader_const.idl
index c12c20623ea..5eee3b0d563 100644
--- a/TAO/tests/IDL_Test/loader_const.idl
+++ b/TAO/tests/IDL_Test/loader_const.idl
@@ -1,3 +1,5 @@
+// $Id$
+
#ifndef _LOADER_CONST_IDL_
#define _LOADER_CONST_IDL_
@@ -10,8 +12,9 @@
#pragma prefix ""
-module Plesk {
- const unsigned long PLESK_VENDOR_ID = 40000;
+module Plesk
+{
+ const unsigned long PLESK_VENDOR_ID = 40000;
}; /* module Plesk */
#endif /* _LOADER_CONST_IDL_ */