mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-21 21:52:10 +02:00
Bug 559674: make class final
Change-Id: Iefdc5cb2359546ad06e9770baf79b379b14e31d8 Signed-off-by: Martin Weber <fifteenknots505@gmail.com>
This commit is contained in:
parent
cfe6a49692
commit
d804c5ae75
1 changed files with 2 additions and 2 deletions
|
@ -19,11 +19,11 @@ import org.eclipse.cdt.core.settings.model.ICSettingEntry;
|
||||||
import org.eclipse.cdt.core.settings.model.util.CDataUtil;
|
import org.eclipse.cdt.core.settings.model.util.CDataUtil;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A {link IBuiltinsOutputProcessor} for the GNU C and GNU C++ compiler.
|
* A {link IBuiltinsOutputProcessor} for the GNU C and GNU C++ compiler and derivatives.
|
||||||
*
|
*
|
||||||
* @author Martin Weber
|
* @author Martin Weber
|
||||||
*/
|
*/
|
||||||
public class GccOutputProcessor implements IBuiltinsOutputProcessor {
|
public final class GccOutputProcessor implements IBuiltinsOutputProcessor {
|
||||||
@SuppressWarnings("nls")
|
@SuppressWarnings("nls")
|
||||||
private static final OutputLineProcessor[] macros = {
|
private static final OutputLineProcessor[] macros = {
|
||||||
new OutputLineProcessor("#define\\s+(\\S+)\\s*(.*)", 1, 2, false, 0),
|
new OutputLineProcessor("#define\\s+(\\S+)\\s*(.*)", 1, 2, false, 0),
|
||||||
|
|
Loading…
Add table
Reference in a new issue