mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fixes warnings.
This commit is contained in:
parent
98d291ebd4
commit
938969ae49
2 changed files with 6 additions and 5 deletions
|
@ -98,6 +98,7 @@ Export-Package: org.eclipse.cdt.core,
|
||||||
org.eclipse.cdt.utils.xcoff.parser
|
org.eclipse.cdt.utils.xcoff.parser
|
||||||
Require-Bundle: org.eclipse.core.resources;bundle-version="[3.2.0,4.0.0)",
|
Require-Bundle: org.eclipse.core.resources;bundle-version="[3.2.0,4.0.0)",
|
||||||
org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)",
|
org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)",
|
||||||
|
org.eclipse.core.contenttype;bundle-version="[3.3.0,4.0.0)",
|
||||||
org.eclipse.text;bundle-version="[3.2.0,4.0.0)",
|
org.eclipse.text;bundle-version="[3.2.0,4.0.0)",
|
||||||
org.eclipse.core.variables;bundle-version="[3.1.100,4.0.0)",
|
org.eclipse.core.variables;bundle-version="[3.1.100,4.0.0)",
|
||||||
org.eclipse.core.filebuffers;bundle-version="[3.2.0,4.0.0)",
|
org.eclipse.core.filebuffers;bundle-version="[3.2.0,4.0.0)",
|
||||||
|
|
|
@ -372,7 +372,7 @@
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<!-- Define C/C++ files ContentTypes -->
|
<!-- Define C/C++ files ContentTypes -->
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<extension point="org.eclipse.core.runtime.contentTypes">
|
<extension point="org.eclipse.core.contenttype.contentTypes">
|
||||||
<!-- declares a content type for C source files -->
|
<!-- declares a content type for C source files -->
|
||||||
<content-type id="cSource" name="%cSourceName"
|
<content-type id="cSource" name="%cSourceName"
|
||||||
base-type="org.eclipse.core.runtime.text"
|
base-type="org.eclipse.core.runtime.text"
|
||||||
|
@ -406,22 +406,22 @@
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
<!-- the reserved filenames by the C++ standard -->
|
<!-- the reserved filenames by the C++ standard -->
|
||||||
<extension point="org.eclipse.core.runtime.contentTypes">
|
<extension point="org.eclipse.core.contenttype.contentTypes">
|
||||||
<file-association
|
<file-association
|
||||||
content-type="org.eclipse.cdt.core.cxxHeader"
|
content-type="org.eclipse.cdt.core.cxxHeader"
|
||||||
file-names="algorithm,bitset,cassert,cctype,cerrno,cfloat,ciso646,climits,clocale,cmath,complex,csetjmp,csignal"/>
|
file-names="algorithm,bitset,cassert,cctype,cerrno,cfloat,ciso646,climits,clocale,cmath,complex,csetjmp,csignal"/>
|
||||||
</extension>
|
</extension>
|
||||||
<extension point="org.eclipse.core.runtime.contentTypes">
|
<extension point="org.eclipse.core.contenttype.contentTypes">
|
||||||
<file-association
|
<file-association
|
||||||
content-type="org.eclipse.cdt.core.cxxHeader"
|
content-type="org.eclipse.cdt.core.cxxHeader"
|
||||||
file-names="cstdarg,cstddef,cstdio,cstdlib,cstring,ctime,cwchar,cwctype,deque,exception,fstream,functional"/>
|
file-names="cstdarg,cstddef,cstdio,cstdlib,cstring,ctime,cwchar,cwctype,deque,exception,fstream,functional"/>
|
||||||
</extension>
|
</extension>
|
||||||
<extension point="org.eclipse.core.runtime.contentTypes">
|
<extension point="org.eclipse.core.contenttype.contentTypes">
|
||||||
<file-association
|
<file-association
|
||||||
content-type="org.eclipse.cdt.core.cxxHeader"
|
content-type="org.eclipse.cdt.core.cxxHeader"
|
||||||
file-names="hash_map,hash_set,iomanip,ios,iosfwd,iostream,istream,iterator,limits,list,locale,map,memory"/>
|
file-names="hash_map,hash_set,iomanip,ios,iosfwd,iostream,istream,iterator,limits,list,locale,map,memory"/>
|
||||||
</extension>
|
</extension>
|
||||||
<extension point="org.eclipse.core.runtime.contentTypes">
|
<extension point="org.eclipse.core.contenttype.contentTypes">
|
||||||
<file-association
|
<file-association
|
||||||
content-type="org.eclipse.cdt.core.cxxHeader"
|
content-type="org.eclipse.cdt.core.cxxHeader"
|
||||||
file-names="new,numeric,ostream,queue,set,sstream,stack,stdexcept,streambuf,string,strstream,typeinfo,utility,valarray,vector"/>
|
file-names="new,numeric,ostream,queue,set,sstream,stack,stdexcept,streambuf,string,strstream,typeinfo,utility,valarray,vector"/>
|
||||||
|
|
Loading…
Add table
Reference in a new issue