Ticket #1056: boost.fixups-20070616-1754.diff

File boost.fixups-20070616-1754.diff, 4.2 KB (added by anonymous, 15 years ago)
  • boost/wave/cpp_context.hpp

    RCS file: /cvsroot/boost/boost/boost/wave/cpp_context.hpp,v
    retrieving revision 1.35
    diff -u -r1.35 cpp_context.hpp
     
    207207            bool even_predefined = false)
    208208        {
    209209#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
    211211            includes.remove_pragma_once_header(std::string(name.c_str()));
    212212#endif
    213213            return macros.remove_macro(
  • boost/wave/wave_config.hpp

    RCS file: /cvsroot/boost/boost/boost/wave/wave_config.hpp,v
    retrieving revision 1.18
    diff -u -r1.18 wave_config.hpp
     
    134134///////////////////////////////////////////////////////////////////////////////
    135135//  Allow to define macros with the command line syntax (-DMACRO(x)=definition)
    136136//
    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
    138138//  syntax, define the following constant as zero before including this file.
    139139//
    140140#if !defined(BOOST_WAVE_ENABLE_COMMANDLINE_MACROS)
  • boost/wave/util/cpp_macromap.hpp

    RCS file: /cvsroot/boost/boost/boost/wave/util/cpp_macromap.hpp,v
    retrieving revision 1.36
    diff -u -r1.36 cpp_macromap.hpp
     
    17131713
    17141714///////////////////////////////////////////////////////////////////////////////
    17151715//
    1716 //  predefined_macro(): predefine a single macro
     1716//  predefine_macro(): predefine a single macro
    17171717//
    17181718///////////////////////////////////////////////////////////////////////////////
    17191719template <typename ContextT>
  • tools/jam/src/builtins.c

    RCS file: /cvsroot/boost/boost/tools/jam/src/builtins.c,v
    retrieving revision 1.52
    diff -u -r1.52 builtins.c
     
    2323# include "compile.h"
    2424# include "native.h"
    2525# include "variable.h"
     26# include "timestamp.h"
    2627# include <ctype.h>
    2728
    2829/*
     
    5859
    5960int glob( char *s, char *c );
    6061
    61 void lol_build( LOL* lol, char** elements );
    6262void backtrace( FRAME *frame );
    6363void backtrace_line( FRAME *frame );
    6464void print_source_line( PARSE* p );
  • tools/jam/src/make1.c

    RCS file: /cvsroot/boost/boost/tools/jam/src/make1.c,v
    retrieving revision 1.32
    diff -u -r1.32 make1.c
     
    6060# include "make.h"
    6161# include "command.h"
    6262# include "execcmd.h"
     63# include "compile.h"
    6364
    6465# include <stdlib.h>
    6566
  • tools/jam/src/native.h

    RCS file: /cvsroot/boost/boost/tools/jam/src/native.h,v
    retrieving revision 1.3
    diff -u -r1.3 native.h
     
    3030                         LIST*(*f)(PARSE*, FRAME*), int version);
    3131
    3232
     33void lol_build( LOL* lol, char** elements );
     34
    3335
    3436#endif
  • tools/jam/src/regexp.c

    RCS file: /cvsroot/boost/boost/tools/jam/src/regexp.c,v
    retrieving revision 1.4
    diff -u -r1.4 regexp.c
     
    307307        register char *ret;
    308308        register char *br;
    309309        register char *ender;
    310         register int parno;
     310        register int parno; /* FIXME: used uninitialized */
    311311        int flags;
    312312
    313313        *flagp = HASWIDTH;      /* Tentatively. */