Switch to unified view

a/src/rcldb/stemdb.cpp b/src/rcldb/stemdb.cpp
...
...
36
36
37
namespace Rcl {
37
namespace Rcl {
38
namespace StemDb {
38
namespace StemDb {
39
39
40
40
41
const static string stemdirstem = "stem_";
41
static const string stemdirstem = "stem_";
42
42
43
/// Compute name of stem db for given base database and language
43
/// Compute name of stem db for given base database and language
44
static string stemdbname(const string& dbdir, const string& lang)
44
static string stemdbname(const string& dbdir, const string& lang)
45
{
45
{
46
    return path_cat(dbdir, stemdirstem + lang);
46
    return path_cat(dbdir, stemdirstem + lang);