RCS file: /cvsroot/boost/boost/boost/wave/cpp_context.hpp,v
retrieving revision 1.35
diff -u -r1.35 cpp_context.hpp
|
|
|
|
| 207 | 207 | bool even_predefined = false) |
| 208 | 208 | { |
| 209 | 209 | #if BOOST_WAVE_SUPPORT_PRAGMA_ONCE != 0 |
| 210 | | // ensure this gets remove from the list of include guards as well |
| | 210 | // ensure this gets removed from the list of include guards as well |
| 211 | 211 | includes.remove_pragma_once_header(std::string(name.c_str())); |
| 212 | 212 | #endif |
| 213 | 213 | return macros.remove_macro( |
RCS file: /cvsroot/boost/boost/boost/wave/wave_config.hpp,v
retrieving revision 1.18
diff -u -r1.18 wave_config.hpp
|
|
|
|
| 134 | 134 | /////////////////////////////////////////////////////////////////////////////// |
| 135 | 135 | // Allow to define macros with the command line syntax (-DMACRO(x)=definition) |
| 136 | 136 | // |
| 137 | | // To disable the the possibility to define macros based on the command line |
| | 137 | // To disable the possibility to define macros based on the command line |
| 138 | 138 | // syntax, define the following constant as zero before including this file. |
| 139 | 139 | // |
| 140 | 140 | #if !defined(BOOST_WAVE_ENABLE_COMMANDLINE_MACROS) |
RCS file: /cvsroot/boost/boost/boost/wave/util/cpp_macromap.hpp,v
retrieving revision 1.36
diff -u -r1.36 cpp_macromap.hpp
|
|
|
|
| 1713 | 1713 | |
| 1714 | 1714 | /////////////////////////////////////////////////////////////////////////////// |
| 1715 | 1715 | // |
| 1716 | | // predefined_macro(): predefine a single macro |
| | 1716 | // predefine_macro(): predefine a single macro |
| 1717 | 1717 | // |
| 1718 | 1718 | /////////////////////////////////////////////////////////////////////////////// |
| 1719 | 1719 | template <typename ContextT> |
RCS file: /cvsroot/boost/boost/tools/jam/src/builtins.c,v
retrieving revision 1.52
diff -u -r1.52 builtins.c
|
|
|
|
| 23 | 23 | # include "compile.h" |
| 24 | 24 | # include "native.h" |
| 25 | 25 | # include "variable.h" |
| | 26 | # include "timestamp.h" |
| 26 | 27 | # include <ctype.h> |
| 27 | 28 | |
| 28 | 29 | /* |
| … |
… |
|
| 58 | 59 | |
| 59 | 60 | int glob( char *s, char *c ); |
| 60 | 61 | |
| 61 | | void lol_build( LOL* lol, char** elements ); |
| 62 | 62 | void backtrace( FRAME *frame ); |
| 63 | 63 | void backtrace_line( FRAME *frame ); |
| 64 | 64 | void print_source_line( PARSE* p ); |
RCS file: /cvsroot/boost/boost/tools/jam/src/make1.c,v
retrieving revision 1.32
diff -u -r1.32 make1.c
|
|
|
|
| 60 | 60 | # include "make.h" |
| 61 | 61 | # include "command.h" |
| 62 | 62 | # include "execcmd.h" |
| | 63 | # include "compile.h" |
| 63 | 64 | |
| 64 | 65 | # include <stdlib.h> |
| 65 | 66 | |
RCS file: /cvsroot/boost/boost/tools/jam/src/native.h,v
retrieving revision 1.3
diff -u -r1.3 native.h
|
|
|
|
| 30 | 30 | LIST*(*f)(PARSE*, FRAME*), int version); |
| 31 | 31 | |
| 32 | 32 | |
| | 33 | void lol_build( LOL* lol, char** elements ); |
| | 34 | |
| 33 | 35 | |
| 34 | 36 | #endif |
RCS file: /cvsroot/boost/boost/tools/jam/src/regexp.c,v
retrieving revision 1.4
diff -u -r1.4 regexp.c
|
|
|
|
| 307 | 307 | register char *ret; |
| 308 | 308 | register char *br; |
| 309 | 309 | register char *ender; |
| 310 | | register int parno; |
| | 310 | register int parno; /* FIXME: used uninitialized */ |
| 311 | 311 | int flags; |
| 312 | 312 | |
| 313 | 313 | *flagp = HASWIDTH; /* Tentatively. */ |