diff options
Diffstat (limited to 'gold/script.h')
-rw-r--r-- | gold/script.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gold/script.h b/gold/script.h index 1afe44d..755bb79 100644 --- a/gold/script.h +++ b/gold/script.h @@ -261,9 +261,9 @@ class Symbol_assignment class Script_assertion { public: - Script_assertion(Expression* echeck, const char* message, + Script_assertion(Expression* check, const char* message, size_t messagelen) - : check_(echeck), message_(message, messagelen) + : check_(check), message_(message, messagelen) { } // Check the assertion. @@ -390,8 +390,8 @@ class Script_options class Script_info { public: - Script_info(Input_arguments* arg_inputs) - : inputs_(arg_inputs) + Script_info(Input_arguments* inputs) + : inputs_(inputs) { } // Returns the input files included because of this script. |