diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-30 10:29:19 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-01 10:43:24 +0000 |
commit | 58aea3f36c14414f95668e229a7350598f6c53a8 (patch) | |
tree | 70c115dffd44576313cefd49e4164d293895e4bd /rsc | |
parent | 3fcbfe10857631212d8b8db9a079bb9692ed78bc (diff) |
loplugin:unusedmethods
- improvements to the plugin to find more method calls
- improvements to python script to remove more false+
- fix the FORCE_COMPILE_ALL build flag to include code in
the $WORKDIR
Change-Id: I4d6015dcb9b9d60c26f0bcee8abad807177a7836
Reviewed-on: https://gerrit.libreoffice.org/19064
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/inc/rsctools.hxx | 2 | ||||
-rw-r--r-- | rsc/source/rscpp/cpp.h | 6 |
2 files changed, 0 insertions, 8 deletions
diff --git a/rsc/inc/rsctools.hxx b/rsc/inc/rsctools.hxx index 91a46dce284e..ca5d3fe3aefd 100644 --- a/rsc/inc/rsctools.hxx +++ b/rsc/inc/rsctools.hxx @@ -41,8 +41,6 @@ enum RSCBYTEORDER_TYPE { RSC_BIGENDIAN, RSC_LITTLEENDIAN, RSC_SYSTEMENDIAN }; // Function Forwards OString GetTmpFileName(); -bool Append(FILE * fDest, OString &raSourceFile); - OString OutputFile(const OString &rInput, const char * ext); char * ResponseFile( RscPtrPtr * ppCmd, char ** ppArgv, diff --git a/rsc/source/rscpp/cpp.h b/rsc/source/rscpp/cpp.h index 927f1ba061b8..ca2464c73e76 100644 --- a/rsc/source/rscpp/cpp.h +++ b/rsc/source/rscpp/cpp.h @@ -286,19 +286,15 @@ int hasdirectory( char*, char*, int ); int openfile( char* ); /* cpp3.c */ -int openfiles( char* filename ); void addfile( FILE* fp, char* filename ); void setincdirs( void ); int AddInclude( char* pIncStr ); -int getredirection( int argc, char** argv ); -void zap_uc( char* ap ); void initdefines( void ); int dooptions( int argc, char* argv[] ); int readoptions( char* filename, char*** pfargv ); /* cpp4.c */ -void dodefines( void ); void checkparm( int c, DEFBUF* dp ); int expcollect( void ); void expstuff( DEFBUF* dp ); @@ -337,8 +333,6 @@ FILEINFO* getfile( size_t bufsize, char* name ); char *getmem( size_t size ); DEFBUF* lookid( int c ); DEFBUF* defendel( char* name, int delete ); -void dunpdef( char* why ); -void dumpadef( char* why, DEFBUF* dp ); int get( void ); int cget( void ); void unget( void ); |