Changeset 9ce8b01 in nscp for include/Socket.h


Ignore:
Timestamp:
11/15/06 20:53:39 (7 years ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2, stable
Children:
1a22e52
Parents:
7aef770
Message:

VC 8.0 compatiblity

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/Socket.h

    r76aafc4 r9ce8b01  
    11#pragma once 
    2 #include "resource.h" 
    32#include <Thread.h> 
    43#include <Mutex.h> 
     
    472471      if (cachedAddresses_) { 
    473472        for (host_list::iterator it = allowedHosts_.begin();it!=allowedHosts_.end();++it) { 
    474           if (((*it).length() > 0) && (std::isalpha((*it)[0]))) { 
     473          if (((*it).length() > 0) && (isalpha((*it)[0]))) { 
    475474            std::string s = (*it); 
    476475            try { 
     
    489488      if (!cachedAddresses_) { 
    490489        for (host_list::iterator it = allowedHosts_.begin();it!=allowedHosts_.end();++it) { 
    491           if (((*it).length() > 0) && (std::isalpha((*it)[0]))) { 
     490          if (((*it).length() > 0) && (isalpha((*it)[0]))) { 
    492491            std::string s = (*it); 
    493492            try { 
Note: See TracChangeset for help on using the changeset viewer.