diff options
| author | jumbatm <jumbatm@gmail.com> | 2020-04-30 00:00:08 +1000 |
|---|---|---|
| committer | jumbatm <jumbatm@gmail.com> | 2020-05-01 21:52:43 +1000 |
| commit | 656ab7639737bd406591a4198633cd3ab0ad0c41 (patch) | |
| tree | f9f09909a8c47abb430f2ed10cf7b5620f25f191 | |
| parent | 894a83d4098a5b390484473ab8608fdd113ff9ba (diff) | |
| download | rust-656ab7639737bd406591a4198633cd3ab0ad0c41.tar.gz rust-656ab7639737bd406591a4198633cd3ab0ad0c41.zip | |
Add FIXME about replacing all usages of try_validation.
| -rw-r--r-- | src/librustc_mir/interpret/validity.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_mir/interpret/validity.rs b/src/librustc_mir/interpret/validity.rs index ac05b3b1ff4..80e39e83d47 100644 --- a/src/librustc_mir/interpret/validity.rs +++ b/src/librustc_mir/interpret/validity.rs @@ -38,6 +38,7 @@ macro_rules! throw_validation_failure { } /// Returns a validation failure for any Err value of $e. +// FIXME: Replace all usages of try_validation! with try_validation_pat!. macro_rules! try_validation { ($e:expr, $what:expr, $where:expr $(, $details:expr )?) => {{ try_validation_pat!($e, _, $what, $where $(, $details )?) |
