Remove unused ignore-license directives

The tidy check was removed in rust-lang/rust#53617
This commit is contained in:
Tomasz Miąsko 2020-01-24 00:00:00 +00:00
parent dee12bb2b7
commit 2fd6c4a18a
28 changed files with 1 additions and 38 deletions

View File

@ -21,9 +21,6 @@
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
// SUCH DAMAGE.
// Appease Rust's tidy.
// ignore-license
#[cfg(feature = "bitflags")]
use bitflags::bitflags;

View File

@ -26,7 +26,6 @@
// Source: https://github.com/NuxiNL/cloudabi
// Appease Rust's tidy.
// ignore-license
// ignore-tidy-linelength
//! **PLEASE NOTE: This entire crate including this

View File

@ -1,11 +1,6 @@
/// Some doc comment.
struct X;
// ignore-license
// http://rust-lang.org/COPYRIGHT.
//
// pp-exact
// Test that rust can properly pretty print a doc comment if it's the first line in a file. some

View File

@ -1,4 +1,3 @@
// ignore-license
#ifdef _WIN32
__declspec(dllexport)
#endif

View File

@ -1,5 +1,3 @@
// ignore-license
#ifdef _WIN32
__declspec(dllexport)
#endif

View File

@ -1,4 +1,3 @@
// ignore-license
void foo();
int main() {

View File

@ -1,4 +1,3 @@
// ignore-license
void foo();
int main() {

View File

@ -1,2 +1 @@
// ignore-license
int foo() { return 0; }

View File

@ -1,2 +1 @@
// ignore-license
int foo() { return 0; }

View File

@ -1,4 +1,3 @@
// ignore-license
extern "C" void foo() {
int *a = new int(3);
delete a;

View File

@ -1,4 +1,3 @@
// ignore-license
#include <stdint.h>
typedef struct TestStruct {

View File

@ -1,4 +1,3 @@
// ignore-license
#include <stdint.h>
uint32_t foo();

View File

@ -1,4 +1,3 @@
// ignore-license
#include <stdio.h>
#include <stdint.h>

View File

@ -1,4 +1,3 @@
// ignore-license
// Pragma needed cause of gcc bug on windows: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52991
#include <assert.h>

View File

@ -1,4 +1,3 @@
// ignore-license
#include <stdio.h>
#include <stdint.h>

View File

@ -1,4 +1,3 @@
// ignore-license
void args_check();
int main() {

View File

@ -1,4 +1,3 @@
// ignore-license
void foo();
void bar() { foo(); }

View File

@ -1,2 +1 @@
// ignore-license
void foo() {}

View File

@ -1,4 +1,3 @@
// ignore-license
#include <stddef.h>
#include <stdint.h>

View File

@ -1,2 +1 @@
// ignore-license
int should_return_one() { return 1; }

View File

@ -1,2 +1 @@
// ignore-license
int should_return_one() { return 0; }

View File

@ -1,4 +1,3 @@
// ignore-license
#include <stdint.h>
extern int32_t BAZ;

View File

@ -1,4 +1,3 @@
// ignore-license
void foo();
int main() {

View File

@ -1,2 +1 @@
// ignore-license
void bar() {}

View File

@ -1,2 +1 @@
// ignore-license
void bar() {}

View File

@ -1,4 +1,3 @@
// ignore-license
void overflow();
int main() {

View File

@ -3,4 +3,3 @@
#![allow(stable_features)]
#![feature(rust1)]
pub fn main() { }
// ignore-license

View File

@ -1,11 +1,8 @@
// run-pass
// ignore-tidy-cr ignore-license
// ignore-tidy-cr
// ignore-tidy-cr (repeated again because of tidy bug)
// license is ignored because tidy can't handle the CRLF here properly.
// http://rust-lang.org/COPYRIGHT.
//
// N.B., this file needs CRLF line endings. The .gitattributes file in
// this directory should enforce it.