1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +02:00

compilation warnings

This commit is contained in:
Andrew Gvozdev 2010-04-29 03:09:09 +00:00
parent 749ebddf58
commit ddb0e74d4c

View file

@ -38,7 +38,7 @@ public interface IDiscoveredPathManager {
/** /**
* Get defined symbols for the whole project * Get defined symbols for the whole project
*/ */
Map getSymbols(); Map<String, String> getSymbols();
IDiscoveredScannerInfoSerializable getSerializable(); IDiscoveredScannerInfoSerializable getSerializable();
} }
@ -63,7 +63,7 @@ public interface IDiscoveredPathManager {
/** /**
* Get defined symbols for the specific path (file) * Get defined symbols for the specific path (file)
*/ */
Map getSymbols(IPath path); Map<String, String> getSymbols(IPath path);
/** /**
* Get include files (gcc option -include) for the specific path (file) * Get include files (gcc option -include) for the specific path (file)
@ -86,7 +86,7 @@ public interface IDiscoveredPathManager {
* *
* @return Map * @return Map
*/ */
Map getPathInfoMap(); Map<IResource, PathInfo> getPathInfoMap();
} }