Ignore:
Timestamp:
2000-06-12T14:49:06+12:00 (24 years ago)
Author:
sjboddie
Message:

Made a few minor changes to get the local library compiling under VC++ 6.0
using the built-in STL (i.e. without the GSDL_USE_IOS_H pre-processor
definition set).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/w32server/settings.cpp

    r902 r1203  
     1#include "text_t.h"
     2
    13#if defined(GSDL_USE_OBJECTSPACE)
    24#  include <ospace\std\fstream>
     
    367369  text_t key, value, section;
    368370  char *cstr_value;
     371#if defined (GSDL_USE_IOS_H)
    369372  ifstream conf (conffile, ios::nocreate);
     373#else
     374  ifstream conf (conffile);
     375#endif
    370376  if (conf) {
    371377    while (read_ini_line(conf, key, value) >= 0) {
Note: See TracChangeset for help on using the changeset viewer.