- 16 Jun, 2017 10 commits
-
-
Eike Ziller authored
Uses the reference implementation of the proposal, which later can be replaced by the std lib implementation depending on compiler and used C++ version. Change-Id: I23f2f8077f4cb26c3d9a403b1ce438b6cdb163f2 Reviewed-by:
Tobias Hunger <tobias.hunger@qt.io>
-
hjk authored
Change-Id: I9ae7bc0f55933c83aaefb0d1df8e9873386f36a7 Reviewed-by:
Tobias Hunger <tobias.hunger@qt.io>
-
hjk authored
... and QmlProfilerRunner::Configuaration by PE::UrlConnection, and call it 'serverUrl' on the user side. That's the only variant we ever had and avoids "translations" between three structures that are essential the same. Change-Id: I33386b2b8d2a7985ff934f6f8f840de0831bf9c1 Reviewed-by:
Christian Stenger <christian.stenger@qt.io>
-
Christian Kandeler authored
For instance, executables like arm-linux-gnueabihf-g++ or x86_64-w64- mingw32-g++ are now detected as gcc and mingw toolchains, respectively. Change-Id: Ia0884215969ae66613cc709bf02fcf32a67da207 Reviewed-by:
Tobias Hunger <tobias.hunger@qt.io>
-
Robert Loehning authored
Change-Id: Ifd5900ebf1e42c6fd8a762e24763c986228ef39d Reviewed-by:
Thomas Hartmann <thomas.hartmann@qt.io>
-
Nikolai Kosjar authored
...for things to watch out on an upgrade. Change-Id: I75b77a3c8fa238939b625d084c7db220ab429319 Reviewed-by:
David Schulz <david.schulz@qt.io>
-
Nikolai Kosjar authored
In the example below, "var" is highlighted as a function, but it should be highlighted as a local variable. struct OtherOperator { void operator()(int); }; void g(OtherOperator o, int var) { o(var); } This is due to a libclang bug. Change-Id: I7c9fcad6f16c25191d31fc330e969ebd282d4869 Reviewed-by:
David Schulz <david.schulz@qt.io>
-
Nikolai Kosjar authored
It was added only for debugging. Change-Id: I7ea80d8d472f319cdcac548d3abf602e0f304fc9 Reviewed-by:
David Schulz <david.schulz@qt.io>
-
Nikolai Kosjar authored
This was some intermediate state. Change-Id: I1390d9b4721a53a08ecc6b6d346dd1e2d9468989 Reviewed-by:
David Schulz <david.schulz@qt.io>
-
Mitch Curtis authored
This reverts commit 62f62fbe. We’ll stick with a vertical list view for now, as the default size of the dialog is not large enough to show many items in a grid. Change-Id: I03ce2f01ecc59266f24ee0d88014848580689536 Reviewed-by:
Alessandro Portale <alessandro.portale@qt.io>
-
- 15 Jun, 2017 18 commits
-
-
Przemyslaw Gorszkowski authored
This fix makes some trick and replaces existing typedef of 'pointer' to the simplest one(only in class unique_ptr), e.g.: template <class _Tp> class unique_ptr { typedef some_strange_things pointer; pointer operator->(); } is replace with template <class _Tp> class unique_ptr { typedef _Tp* pointer; pointer operator->(); } In most of the implementation of unique_ptr it should work. Similar approach is done for std::list, std::vector, std::queue, std::set, std::multiset, std::unordered_set. It is done in this hacky way to omit problems with cyclic and complex resolving of typedefs. Change-Id: I1363dfc5e23d3cd2fa7af7fc27423bfbac2d894d Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@qt.io>
-
Nikolai Kosjar authored
Change-Id: I7bef1dee81678f77f5c0d8a6d22488aa63f981e7 Reviewed-by:
Ivan Donchevskii <ivan.donchevskii@qt.io> Reviewed-by:
hjk <hjk@qt.io>
-
Tobias Hunger authored
Provide more information about what is happening in server mode. Change-Id: I69cbf0b2cb197789231499ac601a08af33ed6b6e Reviewed-by:
Tim Jenssen <tim.jenssen@qt.io>
-
hjk authored
Change-Id: Ifc943c785f94dcd11fae74acdd8c1bf96712ca35 Reviewed-by:
Christian Kandeler <christian.kandeler@qt.io>
-
Christian Kandeler authored
To HEAD of master branch. One API adaptation was required in QbsProjectManager. Change-Id: I59dd76ffa0381d13b4d5f4b4609e85cf73ab32c5 Reviewed-by:
Joerg Bornemann <joerg.bornemann@qt.io>
-
David Schulz authored
This allows to define a color for each highlight, and not just for groups. Change-Id: Ia027f1fb42a96c431b5889ec132a59b16ae41fbb Reviewed-by:
Eike Ziller <eike.ziller@qt.io>
-
Eike Ziller authored
The rvalue refs go out of scope too fast, that's why it must be disabled (as it is for qAsConst). This partially reverts commit 0316219f. Change-Id: Ie2a88400922f0275203a61e4070fe66f2a1fbc7b Reviewed-by:
hjk <hjk@qt.io>
-
David Schulz authored
Change-Id: I490d70a785c947cd41809503e15a317152126641 Reviewed-by:
Alessandro Portale <alessandro.portale@qt.io>
-
hjk authored
Change-Id: I02892243c4e3a9ef8d67e856c82ee953482534b2 Reviewed-by:
Christian Stenger <christian.stenger@qt.io>
-
Nikolai Kosjar authored
Change-Id: Ife8c2d0be9e82bb897cd4612d24e2b893ffb792d Reviewed-by:
David Schulz <david.schulz@qt.io>
-
Tim Jenssen authored
Change-Id: I91e69c80c62ac6f77fd1823f246097355cd81286 Reviewed-by:
Tobias Hunger <tobias.hunger@qt.io>
-
Ivan Donchevskii authored
Make . to -> correction even in case code assistant has no items to propose. Change-Id: Ie16d317c1a55f05883d3de5ba9bd475d315c59a9 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@qt.io> Reviewed-by:
David Schulz <david.schulz@qt.io>
-
Joerg Bornemann authored
Change-Id: Ie0f48ce209f3242f3f07b5f89e6c681f4dd7f810 Reviewed-by:
hjk <hjk@qt.io>
-
Tobias Hunger authored
Add a small python program to wrap ninja and split its output nicely into stdout and stderr. Change-Id: Ib2fae405c170ea15910de20d5f45aaab75aa89cb Reviewed-by:
Christian Stenger <christian.stenger@qt.io>
-
Nikolai Kosjar authored
Change-Id: I27b25e4b8521aabab804812c4cc27cd41c23b46e Reviewed-by:
Marco Bubke <marco.bubke@qt.io>
-
Nikolai Kosjar authored
The called function uses already static state. Change-Id: I22c6cceea6c0c779c4b8ca94b74e0828e27b1f4e Reviewed-by:
Ivan Donchevskii <ivan.donchevskii@qt.io> Reviewed-by:
Marco Bubke <marco.bubke@qt.io>
-
David Schulz authored
Change-Id: I7a720ce13741cb663628798078c74c98314905d7 Reviewed-by:
Christian Stenger <christian.stenger@qt.io>
-
- 14 Jun, 2017 12 commits
-
-
Ivan Donchevskii authored
Check completed functions for preceding & and don't add parantheses in that case Task-number: QTCREATORBUG-17578 Change-Id: I21b1e2c9ffb9d288f3267146e9afd575e6fef30b Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@qt.io>
-
Nikolai Kosjar authored
mock-matchers.h:204:60: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] bool operator()(const A& a, const B& b) const { return a == b; } ~~^~~~ Change-Id: I58883118e1eb42f2e0129b760cdce07daf4ac8d3 Reviewed-by:
Marco Bubke <marco.bubke@qt.io> Reviewed-by:
Ivan Donchevskii <ivan.donchevskii@qt.io>
-
Marco Bubke authored
Utf8String is allocating memory but for many compares it is not needed. In an inner loop this can be expensive. Change-Id: I6320823ab7e086008447eea255e52859a7faaad7 Reviewed-by:
Ivan Donchevskii <ivan.donchevskii@qt.io> Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@qt.io>
-
Ivan Donchevskii authored
Change-Id: Ic57f7f633b73abec26f1d6b9f62ff6d4612911ea Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@qt.io>
-
Ivan Donchevskii authored
Do not add space before left paren in function because it must not be there Task-number: QTCREATORBUG-14878 Change-Id: I0fd0e650aeeee59af7bbc157c2fae652109763bc Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@qt.io>
-
Nikolai Kosjar authored
Change-Id: I80ffe23cbcc84ab7323124581d9dd6afbe974fd0 Reviewed-by:
Marco Bubke <marco.bubke@qt.io>
-
Nikolai Kosjar authored
Saves some cycles when navigating with the text cursor over the characters. Change-Id: Ie9a23d97ac09ca45a32178cae5b8945d0c623811 Reviewed-by:
Marco Bubke <marco.bubke@qt.io>
-
Nikolai Kosjar authored
Change-Id: I8e4079734f9167dcc9da2ceff027f8559bab367f Reviewed-by:
Marco Bubke <marco.bubke@qt.io>
-
Nikolai Kosjar authored
Let CppUseSelectionsUpdater delegate the work to *EditorDocumentProcessor so that the clang code model can also provide results. Change-Id: I6872afbfeea1a5c4a64fdf19fcb1992f134dde08 Reviewed-by:
Marco Bubke <marco.bubke@qt.io>
-
Nikolai Kosjar authored
Change-Id: I61cd72c131407415732ed1231a4614be57c1454b Reviewed-by:
Marco Bubke <marco.bubke@qt.io>
-
Christian Stenger authored
Change-Id: I21855bfd173ad6e85329d83b2337efc37359be6e Reviewed-by:
Christian Kandeler <christian.kandeler@qt.io>
-
Nikolai Kosjar authored
...than currently reflected in documents. Otherwise such requests expire immediately. Needed for a follow-up change. Change-Id: I456aea02a0fee9b9602a59a99943da13a01472d9 Reviewed-by:
Marco Bubke <marco.bubke@qt.io>
-