From 24d1f49f3e686b3d37e3c523be4eee2d40f108f2 Mon Sep 17 00:00:00 2001 From: Cary R Date: Tue, 8 Dec 2015 22:06:55 -0800 Subject: [PATCH] Fix compile warning from recent patch --- vhdlpp/parse_types.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vhdlpp/parse_types.h b/vhdlpp/parse_types.h index 838381efe..403057831 100644 --- a/vhdlpp/parse_types.h +++ b/vhdlpp/parse_types.h @@ -1,7 +1,7 @@ #ifndef IVL_parse_types_H #define IVL_parse_types_H /* - * Copyright (c) 2011,2014 Stephen Williams (steve@icarus.com) + * Copyright (c) 2011-2015 Stephen Williams (steve@icarus.com) * Copyright CERN 2013 / Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it @@ -106,8 +106,8 @@ struct adding_term { // (VHDL-2008 6.4.2.5) class file_open_info_t { public: - file_open_info_t(ExpString*filename, ExpName*kind = NULL) - : kind_(kind), filename_(filename) { + file_open_info_t(ExpString*filename__, ExpName*kind__ = NULL) + : kind_(kind__), filename_(filename__) { // By default files are opened in read-only mode if(!kind_) kind_ = new ExpName(perm_string::literal("read_mode")); }