Changeset 2514


Ignore:
Timestamp:
2001-06-10T12:19:33+12:00 (23 years ago)
Author:
sjboddie
Message:

A few minor changes needed to get mgpp to compile under VC++4.2

Location:
trunk/gsdl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/mgpp/text/FileBuf.h

    r2468 r2514  
    2424
    2525#define FILEBUFSIZE 65536
     26
     27// some elderly windows compilers need to include <vector> (or something
     28// similar) here so that they know what a "bool" is
     29#if defined(GSDL_USE_OBJECTSPACE)
     30#  include <ospace\std\vector>
     31#elif defined(GSDL_USE_STL_H)
     32#  include <vector.h>
     33#else
     34#  include <vector>
     35#endif
    2636
    2737
  • trunk/gsdl/src/mgpp/text/text.h

    r2468 r2514  
    2222#ifndef H_TEXT
    2323#define H_TEXT
     24
     25// some elderly windows compilers need to include <vector> (or something
     26// similar) here so that they know what a "bool" is
     27#if defined(GSDL_USE_OBJECTSPACE)
     28#  include <ospace\std\vector>
     29#elif defined(GSDL_USE_STL_H)
     30#  include <vector.h>
     31#else
     32#  include <vector>
     33#endif
     34
    2435
    2536#include "huffman.h"
Note: See TracChangeset for help on using the changeset viewer.