mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-17 13:15:44 +02:00
Fixed copyright
Change-Id: I801f28d73afeba8432283eb9b5e8de3fa9b47a32
Signed-off-by: Alena Laskavaia <elaskavaia.cdt@gmail.com>
(cherry picked from commit 32c2e14b80
)
This commit is contained in:
parent
c9d2f482d6
commit
8db43c05c9
2 changed files with 21 additions and 26 deletions
|
@ -1,17 +1,14 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) Mar 4, 2015 QNX Software Systems. All Rights Reserved.
|
* Copyright (c) 2009,2015 QNX Software Systems
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
*
|
*
|
||||||
* You must obtain a written license from and pay applicable license fees to QNX
|
* Contributors:
|
||||||
* Software Systems before you may reproduce, modify or distribute this software,
|
* QNX Software Systems (Alena Laskavaia) - initial API and implementation
|
||||||
* or any work that includes all or part of this software. Free development
|
|
||||||
* licenses are available for evaluation and non-commercial purposes. For more
|
|
||||||
* information visit [http://licensing.qnx.com] or email licensing@qnx.com.
|
|
||||||
*
|
|
||||||
* This file may contain contributions from others. Please review this entire
|
|
||||||
* file for other proprietary rights or license notices, as well as the QNX
|
|
||||||
* Development Suite License Guide at [http://licensing.qnx.com/license-guide/]
|
|
||||||
* for other information.
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.cdt.codan.examples.checkers;
|
package org.eclipse.cdt.codan.examples.checkers;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@ -76,13 +73,15 @@ public class CToolChecker extends AbstractCElementChecker {
|
||||||
final Map<String, String> symbols = scannerInfo.getDefinedSymbols();
|
final Map<String, String> symbols = scannerInfo.getDefinedSymbols();
|
||||||
List<String> res = new ArrayList<>();
|
List<String> res = new ArrayList<>();
|
||||||
for (String macro : symbols.keySet()) {
|
for (String macro : symbols.keySet()) {
|
||||||
if (macro.startsWith("_"))
|
if (macro.startsWith("_")) {
|
||||||
continue; // likely embedded macro
|
continue; // likely embedded macro
|
||||||
|
}
|
||||||
String value = symbols.get(macro);
|
String value = symbols.get(macro);
|
||||||
if (value.isEmpty())
|
if (value.isEmpty()) {
|
||||||
res.add("-D" + macro);
|
res.add("-D" + macro);
|
||||||
else
|
} else {
|
||||||
res.add("-D" + macro + "=" + value);
|
res.add("-D" + macro + "=" + value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
for (String inc : scannerInfo.getIncludePaths()) {
|
for (String inc : scannerInfo.getIncludePaths()) {
|
||||||
res.add("-I" + inc);
|
res.add("-I" + inc);
|
||||||
|
|
|
@ -1,16 +1,12 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) Mar 11, 2016 QNX Software Systems. All Rights Reserved.
|
* Copyright (c) 2016 QNX Software Systems
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
*
|
*
|
||||||
* You must obtain a written license from and pay applicable license fees to QNX
|
* Contributors:
|
||||||
* Software Systems before you may reproduce, modify or distribute this software,
|
* QNX Software Systems (Alena Laskavaia) - initial API and implementation
|
||||||
* or any work that includes all or part of this software. Free development
|
|
||||||
* licenses are available for evaluation and non-commercial purposes. For more
|
|
||||||
* information visit [http://licensing.qnx.com] or email licensing@qnx.com.
|
|
||||||
*
|
|
||||||
* This file may contain contributions from others. Please review this entire
|
|
||||||
* file for other proprietary rights or license notices, as well as the QNX
|
|
||||||
* Development Suite License Guide at [http://licensing.qnx.com/license-guide/]
|
|
||||||
* for other information.
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.debug.core.breakpointactions;
|
package org.eclipse.cdt.debug.core.breakpointactions;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue