File: main.cpp

package info (click to toggle)
clazy 1.17-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 5,248 kB
  • sloc: cpp: 23,552; python: 1,450; xml: 450; sh: 237; makefile: 46
file content (22 lines) | stat: -rw-r--r-- 319 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22




static const char * const foo  = "1";
static const char * foo2 = "2";
const char * foo3 = "3"; // Warning

const char * const foo4 = "4";
static const char foo5[] ="5";
const char foo51[] ="5";

namespace {
    const char * foo6 = "6";
}

void test()
{
    const char * foo6 = "6";
}

extern const char *externFoo;