SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
17
lang/freehdl/patches/patch-v2cc_v2cc-util_h
Normal file
17
lang/freehdl/patches/patch-v2cc_v2cc-util_h
Normal file
|
@ -0,0 +1,17 @@
|
|||
C++11 ambiguity
|
||||
|
||||
Index: v2cc/v2cc-util.h
|
||||
--- v2cc/v2cc-util.h.orig
|
||||
+++ v2cc/v2cc-util.h
|
||||
@@ -448,9 +448,9 @@ emit_posinfo(pIIR_PosInfo pi, string &str, pIIR_PosInf
|
||||
|
||||
pIIR_PosInfo_TextFile pit = pIIR_PosInfo_TextFile(pi);
|
||||
// Emit line number and file name
|
||||
- str += "#line " + to_string(pit->line_number);
|
||||
+ str += "#line " + ::to_string(pit->line_number);
|
||||
if (last_pos == NO_SOURCE_LINE)
|
||||
- str += " \"" + to_string(pit->file_name) + "\"\n";
|
||||
+ str += " \"" + ::to_string(pit->file_name) + "\"\n";
|
||||
else
|
||||
str += "\n";
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue