代码搜索:declared
找到约 3,220 项符合「declared」的源代码
代码结果 3,220
www.eeworm.com/read/366702/2867722
c flush-2.c
// { dg-do compile }
void f1(void)
{
#pragma omp flush a // { dg-error "expected" }
#pragma omp flush ( // { dg-error "expected" }
#pragma omp flush (b // { dg-error "declared|expected" }
www.eeworm.com/read/366702/2868529
c crash43.c
// PR c++/24687
extern "C" {
template // { dg-error "C" }
struct ___is_pod {
enum {
__value = (sizeof(__gnu_internal::__test_type(0)))}; // { dg-error "declared|e
www.eeworm.com/read/366702/2868694
c crash41.c
// PR c++/22464
template
void do_something(const T* A) // { dg-error "declared" }
{
struct helper_t{
helper_t() {
A[0]; // { dg-error "use" }
}
} helper;
}
void sub
www.eeworm.com/read/351636/3101880
h vcl_ctime.h
#ifndef vcl_generic_ctime_h_
#define vcl_generic_ctime_h_
// THIS IS A GENERATED FILE. DO NOT EDIT! -- Instead, edit vcl_ctime.hhh and run make
// NB: size_t is declared in , not
www.eeworm.com/read/182361/9206755
c handle_opt.c
/*
*handle_opt.c
* define the function declared in handle_opt.h;
*AUTHOR:liyangth@gmail.com;
*VERSION:1.0;
*DATE:2006-8-9;
*/
#include "handle_opt.h"
/*define the operator's PRI
*OPERATOR: ( ^
www.eeworm.com/read/229812/4738016
c diag0095.c
template // template not declared
void Stack::foo( void )
{}
template
int T::* Stack::give_index() // bad
www.eeworm.com/read/216802/4882884
h sc.h
#include
#include
#include
#include
extern SC_HANDLE hSCManager; // declared in sc.c
//#define SCDBG
/* control functions */
BOOL Query(LPCTSTR S
www.eeworm.com/read/190666/5172587
c array1.c
// Test that completing an array declared with a typedef doesn't change
// the typedef.
// { dg-do run }
typedef int iArr[];
const iArr array4={
{1},{2},{3},{4}
};
const iArr array3={
{1},{2},
www.eeworm.com/read/389157/2542991
txt tt.txt
[Warning] fmMain.pas(25): Method 'Destroy' hides virtual method of base type 'TObject'
[Hint] fmMain.pas(59): Variable 'InitTable' is declared but never used in 'TForm1.Button1Click'
[Hint] fmMain.p
www.eeworm.com/read/366702/2867792
c pr34694.c
// PR middle-end/34694
// { dg-do compile }
// { dg-options "-O -fopenmp -Wall" }
int i;
void
foo ()
{
#pragma omp parallel
{
int j; // { dg-warning "note: 'j' was declared here" }
i = j;