mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
compilation warnings
This commit is contained in:
parent
749ebddf58
commit
ddb0e74d4c
1 changed files with 3 additions and 3 deletions
|
@ -38,7 +38,7 @@ public interface IDiscoveredPathManager {
|
|||
/**
|
||||
* Get defined symbols for the whole project
|
||||
*/
|
||||
Map getSymbols();
|
||||
Map<String, String> getSymbols();
|
||||
|
||||
IDiscoveredScannerInfoSerializable getSerializable();
|
||||
}
|
||||
|
@ -63,7 +63,7 @@ public interface IDiscoveredPathManager {
|
|||
/**
|
||||
* 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)
|
||||
|
@ -86,7 +86,7 @@ public interface IDiscoveredPathManager {
|
|||
*
|
||||
* @return Map
|
||||
*/
|
||||
Map getPathInfoMap();
|
||||
Map<IResource, PathInfo> getPathInfoMap();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue