summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-25 19:56:20 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-25 19:58:16 +0100
commit488e6875e992e11601611a119476624822fc4635 (patch)
treeb70124749e69faf507d0e317ca9d7e26753e99a2 /idlc
parent909de9de9fce6a2e8a5c4e859038d00ce3e88c15 (diff)
remove external include guards
Change-Id: If5758e02baa8e019923355b6c97043b306223fdd
Diffstat (limited to 'idlc')
-rw-r--r--idlc/source/parser.y43
-rw-r--r--idlc/source/scanner.l6
2 files changed, 1 insertions, 48 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y
index 3da099ce8b7a..8729a63ade7e 100644
--- a/idlc/source/parser.y
+++ b/idlc/source/parser.y
@@ -23,69 +23,28 @@
%{
#include <string.h>
-#ifndef _IDLC_IDLC_HXX_
#include <idlc/idlc.hxx>
-#endif
-#ifndef _IDLC_ERRORHANDLER_HXX_
#include <idlc/errorhandler.hxx>
-#endif
-#ifndef _IDLC_FEHELPER_HXX_
#include <idlc/fehelper.hxx>
-#endif
-#ifndef _IDLC_EXPRESSION_HXX_
#include <idlc/astexpression.hxx>
-#endif
-#ifndef _IDLC_ASTCONSTANTS_HXX_
#include <idlc/astconstants.hxx>
-#endif
-#ifndef _IDLC_ASTCONSTANT_HXX_
#include <idlc/astconstant.hxx>
-#endif
-#ifndef _IDLC_ASTARRAY_HXX_
#include <idlc/astarray.hxx>
-#endif
-#ifndef _IDLC_ASTBASETYPE_HXX_
#include <idlc/astbasetype.hxx>
-#endif
-#ifndef _IDLC_ASTTYPEDEF_HXX_
#include <idlc/asttypedef.hxx>
-#endif
-#ifndef _IDLC_ASTEXCEPTION_HXX_
#include <idlc/astexception.hxx>
-#endif
-#ifndef _IDLC_ASTMEMBER_HXX_
#include <idlc/astmember.hxx>
-#endif
-#ifndef _IDLC_ASTENUM_HXX_
#include <idlc/astenum.hxx>
-#endif
-#ifndef _IDLC_ASTSEQUENCE_HXX_
#include <idlc/astsequence.hxx>
-#endif
-#ifndef _IDLC_ASTATTRIBUTE_HXX_
#include <idlc/astattribute.hxx>
-#endif
-#ifndef _IDLC_ASTOPERATION_HXX_
#include <idlc/astoperation.hxx>
-#endif
-#ifndef _IDLC_ASTPARAMETER_HXX_
#include <idlc/astparameter.hxx>
-#endif
-#ifndef _IDLC_ASTINTERFACEMEMBER_HXX_
#include <idlc/astinterfacemember.hxx>
-#endif
-#ifndef _IDLC_ASTSERVICEMEMBER_HXX_
#include <idlc/astservicemember.hxx>
-#endif
-#ifndef _IDLC_ASTOBSERVES_HXX_
#include <idlc/astobserves.hxx>
-#endif
-#ifndef _IDLC_ASTNEEDS_HXX_
#include <idlc/astneeds.hxx>
-#endif
-#ifndef _IDLC_ASTUNION_HXX_
#include <idlc/astunion.hxx>
-#endif
+
#include "idlc/aststructinstance.hxx"
#include "attributeexceptions.hxx"
diff --git a/idlc/source/scanner.l b/idlc/source/scanner.l
index 166c281fefd1..aed48cf08402 100644
--- a/idlc/source/scanner.l
+++ b/idlc/source/scanner.l
@@ -29,15 +29,9 @@
#include <stdlib.h>
#include <string.h>
-#ifndef _IDLC_IDLC_HXX_
#include <idlc/idlc.hxx>
-#endif
-#ifndef _IDLC_ERRORHANDLER_HXX_
#include <idlc/errorhandler.hxx>
-#endif
-#ifndef _IDLC_FEHELPER_HXX_
#include <idlc/fehelper.hxx>
-#endif
#include "attributeexceptions.hxx"