Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2018-11-22Bug 540373: Cleanup: Remove redundant semicolonsJonah Graham14-312/+312
This was done by selecting all projects in Eclipse then Source -> Clean Up... -> choosing: - Remove redundant semicolons and completing the wizard Change-Id: I3d3175cfdfadec4f815c551d486e42c9f57b80ce
2018-11-22Bug 540373: Cleanup: Remove redundant type argumentsJonah Graham31-69/+69
This was done by selecting all projects in Eclipse then Source -> Clean Up... -> choosing: - Remove redundant type arguments and completing the wizard Change-Id: Iaecc7010f097b4b1fabd29ccaa34ccb23a716fbf
2018-11-22Bug 540373: Cleanup: Add missing annotationsJonah Graham14-0/+392
This was done by selecting all projects in Eclipse then Source -> Clean Up... -> choosing: - Add missing Annotations - and selecting all three types: - @Override - @Override on interface methods - @Deprecated and completing the wizard Change-Id: I5d367dacb04327107f25e147edc08efc4eb1c2fe
2018-11-22Bug 540373: Cleanup: Organize ImportsJonah Graham56-294/+1577
This was done by selecting all projects in Eclipse then Source -> Clean Up... -> choosing: - Organize Imports and completing the wizard Change-Id: Ia7b305a4c967d0e6f4e8fb8c1041e7028b24006c
2018-11-22Bug 540373: Cleanup: Format & Remove trailing whitespaceJonah Graham146-70238/+57212
This was done by selecting all projects in Eclipse then Source -> Clean Up... -> choosing: - Format source code - Remove trailing white spaces on all lines and completing the wizard Change-Id: I63685372c6bcc67719bcf145123bcb72e5b00394
2018-11-22Bug 540373: Standard .settings auto appliedJonah Graham10-28/+1528
The releng/scripts/apply_jdt_prefs_to_all_projects.sh was run to copy standard settings to all other projects. Change-Id: I4436c947d7f0142f56b709e661379c3eb54f666b
2018-11-22Bug 540371: Update to EPLv2 using releng/scripts/change_to_eplv2.shJonah Graham185-669/+1329
Change-Id: Ifbb1d5af2a00bd5634dea200320e8c4303ffca6c
2018-11-22Bug 540371: normalize files before applying EPLv2Jonah Graham6-9/+10
Change-Id: I8bfd427bba1df18579d6d5e58ad1e5d704485050
2018-10-30Bug 540610 - Add Automatic-Module-Name headerKarsten Thoms2-0/+2
Change-Id: Ia990b24469751050dd9ec8f9b5550804816308b3 Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2018-10-23Bug 540367 - Increment version numbersWilliam Riley1-1/+1
Change-Id: I4a355170a7075f0a98ba3c1a5131c235c89b07d2
2018-06-05[releng] Bump version to 9.6.0Jonah Graham3-3/+3
Change-Id: I1618eaeab14b421155af733a73e36f6e37ea0b85
2018-02-13[releng] Bump version to 9.5.0Jonah Graham3-3/+3
Change-Id: Ie342f02f7aae633f41a7ab7d39c21e056793a04a
2017-11-13Bug 522010 - Completion of non-type template parameter in ambiguous template ↵Nathan Ridge1-5/+22
argument This works around the fact that the optimization introduced in bug 316704 inteferes with the mechanism for offering completions for both alternatives in an ambiguous context. Change-Id: Ibe14c1b4f2f9c9b3394d4635c87424a25fbd7a53
2017-10-06Add UI tests plugin for CMake. Fix a couple of bugs it found.Doug Schaefer1-9/+0
Also restructures the pom.xmls to put the modules in the top level so we can order them to have the test plugins build after them. Change-Id: I2f0e4ebd252791fb8844cdf0f635d574946207aa
2017-09-11Update feature versions to CDT 9.4.Doug Schaefer2-6/+6
Also remove remaining pom.xmls for feature projects. Change-Id: I78d6335f92d70ad2699b8a25801ff72d2935aefe
2017-04-08Bug 512932 - Name lookup for friend classNathan Ridge1-1/+1
Change-Id: I6550b2cdef4dfacf012fa736104b72794db8c0cc
2017-03-24Don't use _ as identifierMarc-Andre Laperle1-4/+4
Change-Id: Id1e251a3d8895863aef06d7618d38edb10c9113d Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2017-02-14releng: Make use of Tycho POM-less functionalityMarc-Andre Laperle7-104/+26
This removes a lot of pom.xml from the source tree. This is using the "POM-less" Tycho functionality. See https://wiki.eclipse.org/Tycho/Release_Notes/0.24#POM-less_Tycho_builds One advantage of this is that you do not need to update the version in the pom.xml when you change it in the MANIFEST.MF because the pom.xml is automatically generated. This also reduces a lot of the duplicated information and pom.xml repetition. - Maven 3.3 and up is required. - Only eclipse-plugins and eclipse-features can be pom-less. Repositories, target and others still have pom.xml. - New parent poms are added because a parent is necessary directly one level above the plug-in/feature that will have its pom generated - Some test plug-ins had to be renamed .test -> .tests because it's required so that it detects that it's a test plug-in - Some suites were renamed so that they all use the same consistent name "AutomatedIntegrationSuite" - Profiles were added for the more common test configurations. They are activated by the presence of simple .properties files that only serve to activate the correct profile. The profiles: - One for UI tests (UI present and start in UI thread) - One for SWTBot tests (UI present and do not start in UI thread) Other test plug-ins that are too different are kept intact and still have a pom.xml - Fragments are kept intact since they all have different target platform configurations Change-Id: I9d73380eb766f547830c552daf08053a30b1845c Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2017-02-06Removed obsolete code.Sergey Prigogin2-73/+0
Change-Id: I698f57e290125aca55bb8c2209dca2a9c4cf745f
2017-01-25Auto-generate source features using tycho.Marc Khouzam9-133/+18
This commit removes explicit source features and has tycho create them automatically, along with all other source features that were not previously defined. The logic to auto-generate is in the root pom.xml For all pre-existing source feature, the name presented to the user has been changed to use the default name used by Tycho, which is "Developer Resources". This will provide a more standard user-experience with respect to other source features built by Tycho. Existing SDK features are kept for backwards compatibility. All the names of the auto-generated source features that replace an existing source feature have stayed the same except for the 'testsrunner' feature; for that one name change, a p2.inf file is added to allow upgrading from the old named feature to the new named feature. Change-Id: Ie632e798c93898fd828f88df4983fc43e2749d22
2016-12-29Bug 509749 - Find References doesn't find a reference to a functionSergey Prigogin1-7/+3
Change-Id: Id90a80e234638b590266a8671dd1bf13178e0f94
2016-11-16Update version to 9.3.0Marc Khouzam8-11/+11
Change-Id: Ic953ccc5d38ff3661ca44de21ed8c4b7dad5b246
2016-11-15Update version to 9.2.0Marc Khouzam8-11/+11
Change-Id: I36ad4218b20b8ea70584c89f5be45c757bf4c714
2016-09-16Bug 490475. Support the evaluation of C++14 constexpr functionsToni Suter1-2/+2
Change-Id: I05029f26b6d33cbeeab8138a270b38c4018b64b5 Signed-off-by: Toni Suter <tsuter@hsr.ch> Signed-off-by: Silvano Brugnoni <sbrugnon@hsr.ch>
2016-08-17Update version to 9.1.0Marc Khouzam8-11/+11
This commit used the script releng/scripts/ChangeFeaturesVersion.sh Change-Id: I8274a6e8dd5c0f1e450f07952e138b265a441a62
2016-06-22Move the rest of the CDT plugins to java 8Marc Khouzam3-5/+5
This change was generated using the script: releng/scripts/ChangeJavaVersion.sh Change-Id: I2ad96dc682a5acb8529c3edec40de279c331b5a4
2016-05-24Cosmetics.Sergey Prigogin1-3/+2
2016-04-22Bug 492200 - Replace StringBuffer with StringBuilderAlex Blewitt1-3/+3
There are many opportunities for replacing `StringBuffer` with `StringBuilder` provided that the type isn't visible from the public API and is used only in internal methods. Replace these where appropriate. Change-Id: Ic2f50c5b6f3c3a4eae301bb3b40fb6faed235f79 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2016-04-16Bug 491825 - Remove primitive wrapper creationAlex Blewitt2-7/+7
Using `new Integer` and other wrapper types such as `new Character` results in potential extra heap utilisation as the values are not cached. The built-in `Integer.valueOf` will perform caching on numbers in the range -128..127 (at least) using a flyweight pattern. In addition, parsing `int` values can be done with `Integer.parseInt` which avoids object construction. Adjust tests such as `"true".equals(expr)` to `Boolean.parseBoolean(expr)`. Change-Id: I0408a5c69afc4ca6ede71acaf6cc4abd67538006 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2016-04-15Stop using _ identifierJonah Graham3-18/+18
From JLS 15.27.1. It is a compile-time error if a lambda parameter has the name _ (that is, a single underscore character). The use of the variable name _ in any context is discouraged. Future versions of the Java programming language may reserve this name as a keyword and/or give it special semantics. Change-Id: I6f357dcc8f1eea933c6fc3afb474982e6d6210fe Signed-off-by: Jonah Graham <jonah@kichwacoders.com>
2016-02-25Removed 3 deprecated methods.Sergey Prigogin1-7/+7
Change-Id: I75ea53a574817c0c91161a38d4209c428a55521b
2016-02-18Removed INodeFactory.newTranslationUnit() method.Sergey Prigogin1-3/+3
Change-Id: Iaff5e56a18f1a1c53dfc1c31d7bdc6bbfc6c0ae3
2016-01-18Incremented CDT features version to 9.0.0Marc Khouzam8-11/+11
This includes bumping the standalone debugger to 9.0.0 Change-Id: I55fae1cec995b5f6865a5b174c004ed1b76e9bea
2016-01-04Fix copyright of all CDT plugins using the copyright tool from platform.Marc Khouzam85-85/+85
This commit does not add missing copyrights, just updates the date on the existing ones. Change-Id: I646f5afd533a1fcc539bdf2e0686b22f406ecf65
2015-12-28Moved to JDK 1.8.Sergey Prigogin4-266/+252
Change-Id: I415625d3cebe3ff38454bd6722c31da07eb466c4
2015-07-07Bug 379684 Support for User Defined LiteralsRichard Eames1-1/+5
This patch adds preliminary support for C++11 user defined literals: * Syntax support * Type deduction in expressions * Template literal operators * String literal concatenation Change-Id: I8a9760036a2c8428295f0e1ffb4b519a0a2577c9 Signed-off-by: Richard Eames <eclipse@naddiseo.ca>
2015-06-17Improved consistency of test names.Sergey Prigogin1-2/+2
2015-06-16Bug 470014 - Name resolution problem with ref-qualified methodsSergey Prigogin1-6/+6
Change-Id: I2baeee442adffefb1df2c217ed91c5ff58a430ae
2015-06-10Incremented CDT feature version to 8.8.0Marc Khouzam8-11/+11
Change-Id: Ib1189a08a5f0225fd676b682dc8a10477ad3acc5 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-06-09Improved robustness of global scope handling.Sergey Prigogin1-18/+11
Change-Id: Id0222766e8c5e258f866f9a4c8b3307a06bdf4c7
2015-05-05Incremented CDT feature version to 8.7.0Marc Khouzam8-11/+11
Change-Id: Ife0feaaa9263d2b7797e31d628250bd26caff1b5 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-03-25Move some leftover plugins from Java 5 to Java 7.Marc Khouzam5-6/+7
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-03-25Remove unnecessary @SuppressWarningsMarc Khouzam1-1/+1
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-03-25Add many missing @Override to remove warningsMarc Khouzam65-0/+686
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-03-25Remove warnings caused by change to getAdaptable()Marc Khouzam15-29/+29
getAdaptable() in 4.5 M6 has changed to use generics, making casting its result no longer necessary. Change-Id: Idd943216a925576bb72c784b2c5a2a4b8e8b00d2 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-02-09Bug 452416 - Move takesVarArgs() up from ICPPFunctionType toNathan Ridge1-0/+6
IFunctionType Change-Id: Ifd0cf6c4ca026587f2bbccfbc3d7f849c95b92de Signed-off-by: Nathan Ridge <zeratul976@hotmail.com>
2015-02-06Extract test VM args to common property base.test.vmargsMarc-Andre Laperle1-1/+1
This makes it easier to change arguments for all tests. As a side-effect, all tests now enable assertion (-ea) and have the same max heap size, etc. Change-Id: I0965d40ba3283efe7eacdf927f6c302ee0ab30f0 Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2015-01-07Incremented CDT feature version to 8.6.0.Sergey Prigogin8-11/+11
Change-Id: Ic90c8e6a68d21e5b90ec3fac997da6a95a29bedf Signed-off-by: Sergey Prigogin <eclipse.sprigogin@gmail.com> Reviewed-on: https://git.eclipse.org/r/39066 Tested-by: Hudson CI
2014-12-16Update to new CDT LogoMarc Khouzam1-0/+0
Change-Id: Iac76b204027efa01c8f848050a36d05022ecdf86 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com> Reviewed-on: https://git.eclipse.org/r/38363 Reviewed-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com> Tested-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2014-11-21Automatically add appropriate #include statements in index tests.Sergey Prigogin3-23/+40

Back to the top