diff options
author | Benkő Pál <benko.pal@gmail.com> | 2012-09-01 15:25:33 +0200 |
---|---|---|
committer | Benkő Pál <benko.pal@gmail.com> | 2012-09-11 20:38:24 +0200 |
commit | 316403d38136ceadaa8d4b69f696acb76daa2c00 (patch) | |
tree | e02a44b2cb958b4091c9ef052d7867b10a5cdfa6 /flower | |
parent | 60b7eedd586ad8f52e4aafdf68d600409769edf5 (diff) |
remove top-level const's from declarations
results of the following searches were checked manually:
grep -rE -e 'const( +[a-zA-Z0-9_]*)? *, *$' .
grep -rE -e 'const( +[a-zA-Z0-9_]*)?( *,[^;]+)?\) *(const|= *0)? *;' .
Diffstat (limited to 'flower')
-rw-r--r-- | flower/include/file-name.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flower/include/file-name.hh b/flower/include/file-name.hh index 3e9c6d5294..b30dd9cd5b 100644 --- a/flower/include/file-name.hh +++ b/flower/include/file-name.hh @@ -23,7 +23,7 @@ #include "std-vector.hh" #include "std-string.hh" -std::string dir_name (std::string const file_name); +std::string dir_name (std::string file_name); std::string get_working_directory (); class File_name |