Ignore:
Timestamp:
07/15/11 13:40:21 (13 years ago)
Author:
tbretz
Message:
Added some const qualifiers.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/datalogger.cc

    r11406 r11415  
    10631063    shared_ptr<DimStampedInfo> messageBackup;
    10641064    bool dataloggerMessageFound = false;
    1065     SubscriptionsListType::iterator x;
    1066     map<string, SubscriptionType>::iterator y;
    1067     x = fServiceSubscriptions.find("DATA_LOGGER");
     1065    const SubscriptionsListType::iterator x = fServiceSubscriptions.find("DATA_LOGGER");
    10681066    if (x != fServiceSubscriptions.end())
    10691067    {
    1070         y = x->second.find("MESSAGE");
     1068        const map<string, SubscriptionType>::iterator y = x->second.find("MESSAGE");
    10711069        if (y != x->second.end())
    10721070        {
Note: See TracChangeset for help on using the changeset viewer.