Require fn token in decl_storage get (#5717)

* Require `fn` token in `decl_storage` `get`

The `fn` token was already for quite some time as an optional parameter.
It was introduced to make these functions better findable. This pr makes
the `fn` token required.

* Remove `GetterNoFnkeyword`
This commit is contained in:
Bastian Köcher
2020-04-21 16:58:57 +02:00
committed by GitHub
parent 25751c0562
commit 20f211a624
5 changed files with 8 additions and 19 deletions
@@ -166,7 +166,7 @@ struct DeclStorageLine {
#[derive(Parse, ToTokens, Debug)]
struct DeclStorageGetterBody {
fn_keyword: Option<Token![fn]>,
fn_keyword: Token![fn],
ident: Ident,
}