File: gcc-7.patch

package info (click to toggle)
disulfinder 1.2.11-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,244 kB
  • sloc: cpp: 15,877; makefile: 2,534; ansic: 1,233; sh: 77
file content (16 lines) | stat: -rw-r--r-- 476 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Author: Christian Seiler <christian@iwakd.de>
Last-Update: 2017-08-26
Bug-Debian: https://bugs.debian.org/853375
Description: Avoid duplicated definition of guard macro.  Double underscore
 start is reserved for gcc.

--- a/disulfind/src/Common/Exception.h
+++ b/disulfind/src/Common/Exception.h
@@ -1,5 +1,5 @@
-#ifndef __EXCEPTION_H
-#define __EXCEPTION_H
+#ifndef DISULFIND_COMMON_EXCEPTION_H
+#define DISULFIND_COMMON_EXCEPTION_H
 
 #include <string>
 #include <iostream>