Commit 160b43c1 authored by Jüri Valdmann's avatar Jüri Valdmann
Browse files

Fix building tst_dialogs against libc++


Linking fails if re2 was built against libstdc++.

Change-Id: I69868ff284c8d23ccd7219f4da6ec750ff7674b9
Reviewed-by: default avatarMichal Klocek <michal.klocek@qt.io>
Showing with 2 additions and 1 deletion
......@@ -30,6 +30,7 @@
int main(int, char **)
{
RE2 re2("dummytest");
std::string s("dummytest");
RE2 re2(s);
return 0;
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment