Switch to unified view

a/src/common/rclconfig.h b/src/common/rclconfig.h
...
...
21
#include <string>
21
#include <string>
22
#include <vector>
22
#include <vector>
23
#include <set>
23
#include <set>
24
#include <utility>
24
#include <utility>
25
#include <map>
25
#include <map>
26
#include UNORDERED_SET_INCLUDE
26
#include <unordered_set>
27
27
28
using std::string;
28
using std::string;
29
using std::vector;
29
using std::vector;
30
using std::pair;
30
using std::pair;
31
using std::set;
31
using std::set;
...
...
376
    // Parameters auto-fetched on setkeydir
376
    // Parameters auto-fetched on setkeydir
377
    string m_defcharset;
377
    string m_defcharset;
378
    static string o_localecharset;
378
    static string o_localecharset;
379
    // Limiting set of mime types to be processed. Normally empty.
379
    // Limiting set of mime types to be processed. Normally empty.
380
    ParamStale    m_rmtstate;
380
    ParamStale    m_rmtstate;
381
    STD_UNORDERED_SET<string>   m_restrictMTypes; 
381
    std::unordered_set<string>   m_restrictMTypes; 
382
    // Exclusion set of mime types. Normally empty
382
    // Exclusion set of mime types. Normally empty
383
    ParamStale    m_xmtstate;
383
    ParamStale    m_xmtstate;
384
    STD_UNORDERED_SET<string>   m_excludeMTypes; 
384
    std::unordered_set<string>   m_excludeMTypes; 
385
385
386
    vector<pair<int, int> > m_thrConf;
386
    vector<pair<int, int> > m_thrConf;
387
387
388
    // Same idea with the metadata-gathering external commands,
388
    // Same idea with the metadata-gathering external commands,
389
    // (e.g. used to reap tagging info: "tmsu tags %f")
389
    // (e.g. used to reap tagging info: "tmsu tags %f")