Changeset 141 in pacpusframework for branches/2.0-beta1/src/FileLib


Ignore:
Timestamp:
07/30/13 17:48:06 (11 years ago)
Author:
Marek Kurdej
Message:

Major update: using Boost.Log if PACPUS_USE_LOG is true.
Added: overloaded operator<< for QString (explicit instantiation).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0-beta1/src/FileLib/src/DbiteFile.cpp

    r89 r141  
    9595        checkFileOpen();
    9696    } catch (DbiteException & e) {
     97        (void) e; // unused
    9798        LOG_ERROR("Dbite exception: " << e.what());
    9899        close();
     
    103104        readHeader();
    104105    } catch (DbiteException & e) {
     106        (void) e; // unused
    105107        LOG_ERROR("Dbite exception: " << e.what());
    106108        // TODO: readAndDiagnoseHeader();
     
    164166            // TODO: check if same type and record size
    165167        } catch (DbiteException & e) {
     168            (void) e; // unused
    166169            LOG_ERROR("Dbite exception: " << e.what());
    167170            // TODO: readAndDiagnoseHeader();
     
    208211            writeHeader();
    209212        } catch (DbiteException & e) {
     213            (void) e; // unused
    210214            LOG_ERROR("cannot write header on close: " << e.what());
    211215        }
Note: See TracChangeset for help on using the changeset viewer.