Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to rustc 1.41.0-nightly (7afe6d9d1 2019-12-03) #25075

Merged
merged 1 commit into from Dec 4, 2019
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Upgrade to rustc 1.41.0-nightly (7afe6d9d1 2019-12-03)

  • Loading branch information
SimonSapin committed Dec 4, 2019
commit 4cbbb625d0bfa589d2c421a649a3644646244811
@@ -21,9 +21,9 @@

#[macro_use]
extern crate matches;
#[macro_use]
extern crate rustc;
extern crate rustc_driver;
extern crate rustc_session;
extern crate syntax;

use rustc::hir::def_id::DefId;
@@ -32,6 +32,7 @@ use rustc::hir::{self, ExprKind, HirId};
use rustc::lint::{LateContext, LateLintPass, LintContext, LintPass};
use rustc::ty;
use rustc_driver::plugin::Registry;
use rustc_session::declare_lint;
use syntax::ast::{AttrKind, Attribute};
use syntax::source_map;
use syntax::source_map::{ExpnKind, MacroKind, Span};
@@ -1,8 +1,16 @@
#!/bin/sh
#!/bin/bash

# Emit documentation for private items so it is easier to look
# up internal definitions.
#
# Deny "deny warnings" to ensure documenting the crates
# succeeds even if new warnings are introduced to the compiler.
rustdoc -Z "unstable-options" --cap-lints warn --document-private-items "$@"

if [[ "$*" == *--document-private-items* ]]
then
ARGS=""
else
ARGS="--document-private-items"
fi

rustdoc -Z "unstable-options" --cap-lints warn $ARGS "$@"
@@ -1 +1 @@
nightly-2019-11-16
nightly-2019-12-04
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.