-
Bug
-
Resolution: Cannot Reproduce
-
Not Evaluated
-
None
-
Qt Creator 4.2.0-beta1
-
None
- Set some formatting for "Output Argument" in Menu: Tools > Options > Text Editor > Tab:Fonts&Colors, e.g. bold text
- Open a file with the following content, the constructs denoted with "OPS" are not properly highlighted:
struct Bar { Bar(); Bar(Bar&other); }; void testConstructors() { Bar bar; Bar bar2(bar); // OPS Bar bar3{bar}; // OPS } struct TestMemberInitialization { TestMemberInitialization(int &foo) : m_foo(foo) // OPS {} int m_foo; };