diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-03-01 17:26:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 17:26:07 +0000 |
commit | 6cf9f8c99c5813a23d7cec473fedf00683f409e4 (patch) | |
tree | cd590bc5f7b266c043499899e0529ff4c16cc5ec /gcc/rust/parse/rust-cfg-parser.h | |
parent | e82b59dfc9319d72f891bac099bfa0f46d8b8c99 (diff) | |
parent | f7ff6020f8c68e4fb54c17c4460aa7f8a31f85bd (diff) | |
download | gcc-6cf9f8c99c5813a23d7cec473fedf00683f409e4.zip gcc-6cf9f8c99c5813a23d7cec473fedf00683f409e4.tar.gz gcc-6cf9f8c99c5813a23d7cec473fedf00683f409e4.tar.bz2 |
Merge #983
983: Parse proper cfg values r=CohenArthur a=CohenArthur
Closes #936
Co-authored-by: Arthur Cohen <arthur.cohen@embecosm.com>
Diffstat (limited to 'gcc/rust/parse/rust-cfg-parser.h')
-rw-r--r-- | gcc/rust/parse/rust-cfg-parser.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/rust/parse/rust-cfg-parser.h b/gcc/rust/parse/rust-cfg-parser.h index a4b860f..bf4ed4d 100644 --- a/gcc/rust/parse/rust-cfg-parser.h +++ b/gcc/rust/parse/rust-cfg-parser.h @@ -41,8 +41,7 @@ namespace Rust { * @return false if the given input was invalid, true otherwise */ bool -parse_cfg_option (const std::string &input, std::string &key, - std::string &value); +parse_cfg_option (std::string &input, std::string &key, std::string &value); } // namespace Rust #if CHECKING_P |