MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / check_

Method check_

test/test64bit.cpp:47–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45#define check(...) check_(__FILE__, __LINE__, __VA_ARGS__)
46 template<size_t size>
47 void check_(const char* file, int line, const char (&code)[size], bool cpp = true) {
48 // Tokenize..
49 SimpleTokenizer tokenizer(settings, *this, cpp);
50 ASSERT_LOC(tokenizer.tokenize(code), file, line);
51
52 Check64BitPortabilityImpl check64BitPortability(&tokenizer, settings, *this);
53 check64BitPortability.pointerassignment();
54 }
55
56 void assignment() {
57 // #8631

Callers

nothing calls this directly

Calls 2

tokenizeMethod · 0.80
pointerassignmentMethod · 0.80

Tested by

no test coverage detected