Switch to unified view

a/src/rcldb/synfamily.cpp b/src/rcldb/synfamily.cpp
...
...
16
 */
16
 */
17
#ifndef TEST_SYNFAMILY
17
#ifndef TEST_SYNFAMILY
18
18
19
#include "autoconfig.h"
19
#include "autoconfig.h"
20
20
21
#include <iostream>
22
#include <algorithm>
23
21
#include "debuglog.h"
24
#include "debuglog.h"
22
#include "xmacros.h"
25
#include "xmacros.h"
23
#include "synfamily.h"
26
#include "synfamily.h"
24
27
#include "smallut.h"
25
#include <iostream>
26
#include <algorithm>
27
28
28
using namespace std;
29
using namespace std;
29
30
30
namespace Rcl {
31
namespace Rcl {
31
32
...
...
173
    if (!filtertrans || (*filtertrans)(root) == filter_root) {
174
    if (!filtertrans || (*filtertrans)(root) == filter_root) {
174
        LOGDEB2(("  Pushing %s\n", root.c_str()));
175
        LOGDEB2(("  Pushing %s\n", root.c_str()));
175
        result.push_back(root);
176
        result.push_back(root);
176
    }
177
    }
177
    }
178
    }
178
179
    LOGDEB(("XapCompSynFamMbr::synExpand([%s]): term [%s] -> [%s]\n",
180
      m_prefix.c_str(), term.c_str(), stringsToString(result).c_str()));
179
    return true;
181
    return true;
180
}
182
}
181
183
182
}
184
}
183
185