Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTorbjörn Svensson2020-10-21 17:59:07 +0000
committerJonah Graham2020-10-24 20:54:40 +0000
commitc5a53bb7fe97a32d675812cc0f4acdda009e3862 (patch)
tree7ae1857a5c35968b29c215f26eb92a7aa80c2b45 /core/org.eclipse.cdt.core.linux.x86_64/META-INF
parent0429be17e1a03b635d2b5209928bcd99eacdcef0 (diff)
downloadorg.eclipse.cdt-c5a53bb7fe97a32d675812cc0f4acdda009e3862.tar.gz
org.eclipse.cdt-c5a53bb7fe97a32d675812cc0f4acdda009e3862.tar.xz
org.eclipse.cdt-c5a53bb7fe97a32d675812cc0f4acdda009e3862.zip
Bug 568079: Format C/C++ code
Added a new C/C++ formatter profile called "Unmanaged profile 'CDT'" (name stolen from the Java formatter) that is basically K&R with the tweak of maxium line width set to 120 (same width as for .java files). Added enforcement of the formatter during build. libspawner.so/jnilib have differences because the re-formatting changes line numbers and therefore the __LINE__ macro expands to a different value. Change-Id: Id3a0619cb31640c7817dc684c72139f90cab0fc6 Signed-off-by: Torbjörn Svensson <azoff@svenskalinuxforeningen.se>
Diffstat (limited to 'core/org.eclipse.cdt.core.linux.x86_64/META-INF')
-rw-r--r--core/org.eclipse.cdt.core.linux.x86_64/META-INF/MANIFEST.MF2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/org.eclipse.cdt.core.linux.x86_64/META-INF/MANIFEST.MF b/core/org.eclipse.cdt.core.linux.x86_64/META-INF/MANIFEST.MF
index 14eabee4ac0..2a9b6739dd4 100644
--- a/core/org.eclipse.cdt.core.linux.x86_64/META-INF/MANIFEST.MF
+++ b/core/org.eclipse.cdt.core.linux.x86_64/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %fragmentName.linux.x86_64
Bundle-SymbolicName: org.eclipse.cdt.core.linux.x86_64;singleton:=true
-Bundle-Version: 6.0.0.qualifier
+Bundle-Version: 6.0.100.qualifier
Bundle-Vendor: %providerName
Fragment-Host: org.eclipse.cdt.core.native;bundle-version="[6.0.0,7.0.0)"
Bundle-Localization: plugin

Back to the top