代码搜索:declared

找到约 3,220 项符合「declared」的源代码

代码结果 3,220
www.eeworm.com/read/120512/14800857

err nand.err

"nand.c", line 187: Warning: C2870W: variable 'ch' declared but not used "nand.c", line 392: Warning: C2870W: variable 'status' declared but not used "nand.c", line 552: Warning: C2870W: variable 'E
www.eeworm.com/read/120512/14800876

err k9k2g16.err

"k9k2g16.c", line 91: Warning: C2870W: variable 'pagenum' declared but not used "k9k2g16.c", line 91: Warning: C2870W: variable 'blocknum' declared but not used "k9k2g16.c", line 126: Warning: C2870
www.eeworm.com/read/216545/15003846

err iic_s5x532.err

"src\iic_s5x532.c", line 66: Warning: C2207W: inventing 'extern int CamReset();' "src\iic_s5x532.c", line 74: Warning: C2207W: inventing 'extern int SetCAMClockDivider();' "src\iic_s5x532.c", line 1
www.eeworm.com/read/216545/15003866

err vlx_test.err

"src\vlx_test.c", line 99: Warning: C2207W: inventing 'extern int printf();' "src\vlx_test.c", line 106: Warning: C2207W: inventing 'extern int getchar();' "src\vlx_test.c", line 142: Warning: C2207
www.eeworm.com/read/167185/5465825

lt esps2lwb.lt

esps2lwb.c ============== (19) static variable sccs_id unused warning: possible pointer alignment problem (207) (212) ============== name defined but never used sccs_id esps2lw
www.eeworm.com/read/162614/5517210

c register-var-2.c

/* PR/18160 */ /* { dg-do compile } */ /* This should yield an error even without -pedantic. */ /* { dg-options "-Wall -W" } */ void g(int *); void f(void) { register int x; g(&x); /* { dg-
www.eeworm.com/read/162614/5517280

c wunused-8.c

// PR c++/16029 // { dg-options "-Wunused" } int main () { // We should not see an "unused" warning about "whatever" on the // next line. return whatever (); // { dg-error "declared" } }
www.eeworm.com/read/162614/5517415

c using13.c

// { dg-do compile } // Origin: Stefan Stra遝r // PR c++/20240: namespace A { int a; } namespace C{ int a; using A::a; // { dg-error "already declared" } }
www.eeworm.com/read/162614/5517453

c new2.c

// { dg-do compile } // Reject [de-]allocation functions declared in a namespace, or // declared as static. namespace A { void* operator new(__SIZE_TYPE__ s, int* p); // { dg-error "namespace" }
www.eeworm.com/read/162614/5517499

c error1.c

// PR c++/17609 // Origin: // { dg-do compile } namespace N { int i; } void foo() { i; } // { dg-error "not declared" } using namespace N; void bar() { i; }