diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-11-27 13:12:57 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-11-27 13:12:57 -0600 |
commit | 770f8097e0fa30162f20f0c1978b9fad5541ba74 (patch) | |
tree | 65949cafcfdafef67e42cc2b88f86da1590bef6a /idlc | |
parent | 49a9e8a08cc14003ad5806ba9256c163489f0d02 (diff) |
remove include of pch header from idlc
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/inc/pch/precompiled_idlc.cxx | 1 | ||||
-rw-r--r-- | idlc/inc/pch/precompiled_idlc.hxx | 1 | ||||
-rw-r--r-- | idlc/source/astarray.cxx | 2 | ||||
-rw-r--r-- | idlc/source/astconstant.cxx | 2 | ||||
-rw-r--r-- | idlc/source/astdeclaration.cxx | 2 | ||||
-rw-r--r-- | idlc/source/astdump.cxx | 2 | ||||
-rw-r--r-- | idlc/source/astenum.cxx | 2 | ||||
-rw-r--r-- | idlc/source/astexpression.cxx | 2 | ||||
-rw-r--r-- | idlc/source/astinterface.cxx | 2 | ||||
-rw-r--r-- | idlc/source/astoperation.cxx | 2 | ||||
-rw-r--r-- | idlc/source/astscope.cxx | 2 | ||||
-rw-r--r-- | idlc/source/astservice.cxx | 2 | ||||
-rw-r--r-- | idlc/source/aststack.cxx | 2 | ||||
-rw-r--r-- | idlc/source/aststruct.cxx | 2 | ||||
-rw-r--r-- | idlc/source/aststructinstance.cxx | 2 | ||||
-rw-r--r-- | idlc/source/astunion.cxx | 2 | ||||
-rw-r--r-- | idlc/source/errorhandler.cxx | 2 | ||||
-rw-r--r-- | idlc/source/fehelper.cxx | 2 | ||||
-rw-r--r-- | idlc/source/idlc.cxx | 2 | ||||
-rw-r--r-- | idlc/source/idlccompile.cxx | 2 | ||||
-rw-r--r-- | idlc/source/idlcmain.cxx | 2 | ||||
-rw-r--r-- | idlc/source/idlcproduce.cxx | 2 | ||||
-rw-r--r-- | idlc/source/options.cxx | 2 | ||||
-rw-r--r-- | idlc/source/wrap_parser.cxx | 2 | ||||
-rw-r--r-- | idlc/source/wrap_scanner.cxx | 2 |
25 files changed, 0 insertions, 48 deletions
diff --git a/idlc/inc/pch/precompiled_idlc.cxx b/idlc/inc/pch/precompiled_idlc.cxx index 50db39b8b090..e5a2f60de99b 100644 --- a/idlc/inc/pch/precompiled_idlc.cxx +++ b/idlc/inc/pch/precompiled_idlc.cxx @@ -26,6 +26,5 @@ * ************************************************************************/ -#include "precompiled_idlc.hxx" /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/idlc/inc/pch/precompiled_idlc.hxx b/idlc/inc/pch/precompiled_idlc.hxx index 1702e1a05c0b..1f2bf34bf349 100644 --- a/idlc/inc/pch/precompiled_idlc.hxx +++ b/idlc/inc/pch/precompiled_idlc.hxx @@ -26,7 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): Generated on 2006-09-01 17:49:49.748845 #ifdef PRECOMPILED_HEADERS #endif diff --git a/idlc/source/astarray.cxx b/idlc/source/astarray.cxx index 1d3052b577e5..01164e33ca9f 100644 --- a/idlc/source/astarray.cxx +++ b/idlc/source/astarray.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/astarray.hxx> using namespace ::rtl; diff --git a/idlc/source/astconstant.cxx b/idlc/source/astconstant.cxx index 7f9a1de0425d..20a89e7602c6 100644 --- a/idlc/source/astconstant.cxx +++ b/idlc/source/astconstant.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/astconstant.hxx> #include <idlc/astscope.hxx> diff --git a/idlc/source/astdeclaration.cxx b/idlc/source/astdeclaration.cxx index f767bb7991bb..5e4dcdd6382d 100644 --- a/idlc/source/astdeclaration.cxx +++ b/idlc/source/astdeclaration.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/astdeclaration.hxx> #include <idlc/astscope.hxx> #include <rtl/strbuf.hxx> diff --git a/idlc/source/astdump.cxx b/idlc/source/astdump.cxx index 9941e5e1c664..5f1c738278f5 100644 --- a/idlc/source/astdump.cxx +++ b/idlc/source/astdump.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/astmodule.hxx> #include <idlc/asttypedef.hxx> #include <idlc/astservice.hxx> diff --git a/idlc/source/astenum.cxx b/idlc/source/astenum.cxx index 5d5a8597b850..c0f99f5b01ae 100644 --- a/idlc/source/astenum.cxx +++ b/idlc/source/astenum.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/astenum.hxx> #include "registry/version.h" diff --git a/idlc/source/astexpression.cxx b/idlc/source/astexpression.cxx index 516e3e242c8d..ebe62e2bc40e 100644 --- a/idlc/source/astexpression.cxx +++ b/idlc/source/astexpression.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/astexpression.hxx> #include <idlc/astconstant.hxx> diff --git a/idlc/source/astinterface.cxx b/idlc/source/astinterface.cxx index e5935923cf85..5e8ddaf0e499 100644 --- a/idlc/source/astinterface.cxx +++ b/idlc/source/astinterface.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/astinterface.hxx> #include <idlc/astattribute.hxx> #include <idlc/astoperation.hxx> diff --git a/idlc/source/astoperation.cxx b/idlc/source/astoperation.cxx index 2cc90da3ad9c..cdc4cf25c34a 100644 --- a/idlc/source/astoperation.cxx +++ b/idlc/source/astoperation.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/astoperation.hxx> #include <idlc/asttype.hxx> #include <idlc/astbasetype.hxx> diff --git a/idlc/source/astscope.cxx b/idlc/source/astscope.cxx index 0b1a750f5a8b..49bd39a43637 100644 --- a/idlc/source/astscope.cxx +++ b/idlc/source/astscope.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/astscope.hxx> #include <idlc/astbasetype.hxx> #include <idlc/astinterface.hxx> diff --git a/idlc/source/astservice.cxx b/idlc/source/astservice.cxx index b26997cc3ab9..0c6900a52d4e 100644 --- a/idlc/source/astservice.cxx +++ b/idlc/source/astservice.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include "sal/config.h" diff --git a/idlc/source/aststack.cxx b/idlc/source/aststack.cxx index d3db212e18fb..06cb7495bfec 100644 --- a/idlc/source/aststack.cxx +++ b/idlc/source/aststack.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <rtl/alloc.h> #include <idlc/aststack.hxx> #include <idlc/astscope.hxx> diff --git a/idlc/source/aststruct.cxx b/idlc/source/aststruct.cxx index 3a8a959062ed..d54df4c22b0f 100644 --- a/idlc/source/aststruct.cxx +++ b/idlc/source/aststruct.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/aststruct.hxx> #include <idlc/astmember.hxx> diff --git a/idlc/source/aststructinstance.cxx b/idlc/source/aststructinstance.cxx index e2292d016912..bfb628df0fdc 100644 --- a/idlc/source/aststructinstance.cxx +++ b/idlc/source/aststructinstance.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include "idlc/aststructinstance.hxx" diff --git a/idlc/source/astunion.cxx b/idlc/source/astunion.cxx index e0a8bf84b01e..f55843befc8b 100644 --- a/idlc/source/astunion.cxx +++ b/idlc/source/astunion.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/astunion.hxx> #include <idlc/astbasetype.hxx> #include <idlc/errorhandler.hxx> diff --git a/idlc/source/errorhandler.cxx b/idlc/source/errorhandler.cxx index 30ecd1ef7ca4..4f5dcfcc37d8 100644 --- a/idlc/source/errorhandler.cxx +++ b/idlc/source/errorhandler.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/errorhandler.hxx> #include <idlc/astinterface.hxx> diff --git a/idlc/source/fehelper.cxx b/idlc/source/fehelper.cxx index 306d4f16306a..930c65bbaac0 100644 --- a/idlc/source/fehelper.cxx +++ b/idlc/source/fehelper.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/fehelper.hxx> #include <idlc/errorhandler.hxx> #include <idlc/astarray.hxx> diff --git a/idlc/source/idlc.cxx b/idlc/source/idlc.cxx index d1b3b9587d5b..c963287f6a5d 100644 --- a/idlc/source/idlc.cxx +++ b/idlc/source/idlc.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/idlc.hxx> #include <idlc/errorhandler.hxx> #include <idlc/astscope.hxx> diff --git a/idlc/source/idlccompile.cxx b/idlc/source/idlccompile.cxx index 8e3d4d4017d5..b8ceb3332040 100644 --- a/idlc/source/idlccompile.cxx +++ b/idlc/source/idlccompile.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/idlc.hxx> #include <rtl/ustring.hxx> #include <rtl/strbuf.hxx> diff --git a/idlc/source/idlcmain.cxx b/idlc/source/idlcmain.cxx index 2df142fdbf91..226a60c19f9e 100644 --- a/idlc/source/idlcmain.cxx +++ b/idlc/source/idlcmain.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include "idlc/idlc.hxx" #include "sal/main.h" diff --git a/idlc/source/idlcproduce.cxx b/idlc/source/idlcproduce.cxx index a65f3317487a..04ee34f94b19 100644 --- a/idlc/source/idlcproduce.cxx +++ b/idlc/source/idlcproduce.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include <idlc/idlc.hxx> #include <idlc/astmodule.hxx> #include <rtl/strbuf.hxx> diff --git a/idlc/source/options.cxx b/idlc/source/options.cxx index 407f85e4cc4e..5b2c7cbdc8c7 100644 --- a/idlc/source/options.cxx +++ b/idlc/source/options.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include "idlc/options.hxx" diff --git a/idlc/source/wrap_parser.cxx b/idlc/source/wrap_parser.cxx index f03b3cc7f173..053713a21d90 100644 --- a/idlc/source/wrap_parser.cxx +++ b/idlc/source/wrap_parser.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include "parser.cxx" diff --git a/idlc/source/wrap_scanner.cxx b/idlc/source/wrap_scanner.cxx index 6ea04c00e96e..f058db12723d 100644 --- a/idlc/source/wrap_scanner.cxx +++ b/idlc/source/wrap_scanner.cxx @@ -26,8 +26,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_idlc.hxx" #include "scanner.cxx" |