diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2017-12-07 23:59:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-07 23:59:00 +0100 |
| commit | 912def328fb448d3ca96acf8e94bc7cf04ef64bc (patch) | |
| tree | 150240b2b3384a549fa58cc4d73940a6cfa32ced /src/libstd | |
| parent | 9c49f401fecd8c5ef42a33a070a61daa2b911b47 (diff) | |
| parent | 9e281cc6a57417714335ae6e4e476315f6064b39 (diff) | |
| download | rust-912def328fb448d3ca96acf8e94bc7cf04ef64bc.tar.gz rust-912def328fb448d3ca96acf8e94bc7cf04ef64bc.zip | |
Rollup merge of #46416 - liigo:cfg-macro, r=steveklabnik
doc: macro `cfg!` evaluating at compile-time
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/macros.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index b36473d9b75..de46fedaebb 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -631,7 +631,7 @@ pub mod builtin { #[macro_export] macro_rules! module_path { () => ({ /* compiler built-in */ }) } - /// Boolean evaluation of configuration flags. + /// Boolean evaluation of configuration flags, at compile-time. /// /// In addition to the `#[cfg]` attribute, this macro is provided to allow /// boolean expression evaluation of configuration flags. This frequently |
