Fixed rba::Technology test. Now all tests are passing with Qt.

This commit is contained in:
Matthias Koefferlein 2018-07-04 20:00:41 +02:00
parent 12e0db660c
commit 642fb4270b
1 changed files with 3 additions and 0 deletions

View File

@ -668,6 +668,9 @@ std::string relative_path (const std::string &base, const std::string &p)
bool is_same_file (const std::string &a, const std::string &b)
{
if (tl::normalize_path (a) == tl::normalize_path (b)) {
return true;
}
#if defined(_WIN32)