mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 12:03:16 +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
|
* 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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue