Changeset 12793


Ignore:
Timestamp:
2006-09-20T13:31:31+12:00 (18 years ago)
Author:
kjdon
Message:

gcc-4 compilation patch, thanks to Juan Grigera

Location:
trunk/gsdl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/lib/display.h

    r9932 r12793  
    269269  // say where any error logging goes, this can be NULL
    270270  // if no error logging is desired - returns previous value
    271   ostream *displayclass::setlogout (ostream *thelogout);
     271  ostream *setlogout (ostream *thelogout);
    272272
    273273  // debug stuff
  • trunk/gsdl/src/phind/generate/phrase.h

    r2839 r12793  
    114114
    115115  // Make sure the phrase location in the suffix/prefix array is known
    116   inline void Phrase::ensureSuffixFound() {
     116  inline void ensureSuffixFound() {
    117117    if (!suffixFound)
    118118      findFirstAndLastSuffix();
    119119  }
    120   inline void Phrase::ensurePrefixFound() {
     120  inline void ensurePrefixFound() {
    121121    if (!prefixFound)
    122122      findFirstAndLastPrefix();
     
    142142
    143143  // increase the length of a phrase "in place"
    144   int Phrase::increaseSuffixLength(cellcount l);
    145   int Phrase::increasePrefixLength(cellcount l);
     144  int increaseSuffixLength(cellcount l);
     145  int increasePrefixLength(cellcount l);
    146146   
    147147  // Compare the phrase to a given array of symbols
     
    150150
    151151  // Create a new phrase that is longer than this one, yet as short as possible.
    152   Phrase Phrase::newPhraseShortestSuffixExpansion(cellindex i);
    153   Phrase Phrase::newPhraseShortestPrefixExpansion(cellindex i);
     152  Phrase newPhraseShortestSuffixExpansion(cellindex i);
     153  Phrase newPhraseShortestPrefixExpansion(cellindex i);
    154154
    155155};
Note: See TracChangeset for help on using the changeset viewer.