mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Bug 45203. Include class stack in the error message.
This commit is contained in:
parent
9d1ea68fe6
commit
ab015da9d3
1 changed files with 3 additions and 2 deletions
|
@ -501,8 +501,9 @@ public class IncludeOrganizer {
|
|||
declarationText.append(variable.getName());
|
||||
declarationText.append(';');
|
||||
} else {
|
||||
CUIPlugin.logError("Unexpected type of binding " + binding.getName() + //$NON-NLS-1$
|
||||
" - " + binding.getClass().getSimpleName()); //$NON-NLS-1$
|
||||
CUIPlugin.log(new IllegalArgumentException(
|
||||
"Unexpected type of binding " + binding.getName() + //$NON-NLS-1$
|
||||
" - " + binding.getClass().getSimpleName())); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
// Append the closing curly brackets from the namespaces (if any).
|
||||
|
|
Loading…
Add table
Reference in a new issue