summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-08-07 09:01:11 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-08-07 09:01:11 +0000
commitc05b6814eceea75635816af08e09fc67c1e97799 (patch)
tree0c97496792aecd328c5a3236f73a5f30b9ff0391
parent539324ccc251264c8c895b3392675e8c5d737585 (diff)
downloadATCD-c05b6814eceea75635816af08e09fc67c1e97799.tar.gz
ChangeLogTag: Tue Aug 7 08:57:46 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--CIAO/ChangeLog8
-rw-r--r--CIAO/tests/IDL3/ImpliedIDL/All/include.idl5
-rw-r--r--CIAO/tests/IDL3/ImpliedIDL/All/pass_through.idl5
-rw-r--r--CIAO/tests/IDL3/ImpliedIDL/All/raw_include.idl5
4 files changed, 23 insertions, 0 deletions
diff --git a/CIAO/ChangeLog b/CIAO/ChangeLog
index 9a8992af3a0..273cede02b0 100644
--- a/CIAO/ChangeLog
+++ b/CIAO/ChangeLog
@@ -1,3 +1,11 @@
+Tue Aug 7 08:57:46 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * tests/IDL3/ImpliedIDL/All/include.idl:
+ * tests/IDL3/ImpliedIDL/All/raw_include.idl:
+ * tests/IDL3/ImpliedIDL/All/pass_through.idl:
+
+ Added #ifndef guards.
+
Mon Aug 6 13:00:10 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* tools/IDL3_to_IDL2/identifier_helper.cpp (orig_sn):
diff --git a/CIAO/tests/IDL3/ImpliedIDL/All/include.idl b/CIAO/tests/IDL3/ImpliedIDL/All/include.idl
index 6a08a6c03d6..848d4128b6e 100644
--- a/CIAO/tests/IDL3/ImpliedIDL/All/include.idl
+++ b/CIAO/tests/IDL3/ImpliedIDL/All/include.idl
@@ -6,6 +6,9 @@
* Tests tool's regeneration of IDL2 constructs, which
* should be basically unchanged.
*/
+
+#ifndef INCLUDE_IDL
+#define INCLUDE_IDL
module pre_mod
{
@@ -28,3 +31,5 @@ module pre_mod
const pre_mod::which which_one = pre_mod::ONE;
+#endif /* INCLUDE_IDL */
+
diff --git a/CIAO/tests/IDL3/ImpliedIDL/All/pass_through.idl b/CIAO/tests/IDL3/ImpliedIDL/All/pass_through.idl
index 1ba927c59ac..7adfb514b57 100644
--- a/CIAO/tests/IDL3/ImpliedIDL/All/pass_through.idl
+++ b/CIAO/tests/IDL3/ImpliedIDL/All/pass_through.idl
@@ -6,6 +6,9 @@
* Tests tool's regeneration of IDL2 constructs, which
* should be basically unchanged.
*/
+
+#ifndef PASS_THROUGH_IDL
+#define PASS_THROUGH_IDL
#pragma prefix "glooby"
@@ -87,3 +90,5 @@ module mod
};
};
+#endif /* PASS_THROUGH_IDL */
+
diff --git a/CIAO/tests/IDL3/ImpliedIDL/All/raw_include.idl b/CIAO/tests/IDL3/ImpliedIDL/All/raw_include.idl
index 51cff222b4b..b3aed65f2df 100644
--- a/CIAO/tests/IDL3/ImpliedIDL/All/raw_include.idl
+++ b/CIAO/tests/IDL3/ImpliedIDL/All/raw_include.idl
@@ -8,6 +8,9 @@
* an IDL2 file corresponding to the IDL3 file this one is
* included in unchanged, without the '_IDL2' suffix.
*/
+
+#ifndef RAW_INCLUDE_IDL
+#define RAW_INCLUDE_IDL
module carnsarn
{
@@ -20,3 +23,5 @@ module carnsarn
wstring<3> trinity;
};
};
+
+#endif /* RAW_INCLUDE_IDL */