Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 8, 2015, 11:11:00 AM (8 years ago)
Author:
landauf
Message:

using std::array instead of boost::array

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/cpp11_v2/src/libraries/core/config/ConfigFileManager.h

    r9559 r10776  
    3838#include "core/CorePrereqs.h"
    3939
    40 #include <boost/array.hpp>
     40#include <array>
    4141
    4242#include "util/Singleton.h"
     
    6969            ConfigFileManager(const ConfigFileManager&);    ///< Copy-constructor: not implemented
    7070
    71             boost::array<ConfigFile*, 3> configFiles_;      ///< Stores the config files for each type in an array (must have the same size like ConfigFileType::Value)
     71            std::array<ConfigFile*, 3> configFiles_;        ///< Stores the config files for each type in an array (must have the same size like ConfigFileType::Value)
    7272            static ConfigFileManager* singletonPtr_s;       ///< Stores the singleton-pointer
    7373    };
Note: See TracChangeset for help on using the changeset viewer.