1
0
Fork 0
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:
Martin Weber 2020-05-29 21:34:55 +02:00 committed by Alexander Fedorov
parent cfe6a49692
commit d804c5ae75

View file

@ -19,11 +19,11 @@ import org.eclipse.cdt.core.settings.model.ICSettingEntry;
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
*/
public class GccOutputProcessor implements IBuiltinsOutputProcessor {
public final class GccOutputProcessor implements IBuiltinsOutputProcessor {
@SuppressWarnings("nls")
private static final OutputLineProcessor[] macros = {
new OutputLineProcessor("#define\\s+(\\S+)\\s*(.*)", 1, 2, false, 0),