mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
13 lines
134 B
C++
13 lines
134 B
C++
struct foo {
|
|
int ints[10];
|
|
char chars[10];
|
|
double doubles[10];
|
|
|
|
foo()
|
|
: ints()
|
|
, chars()
|
|
, doubles()
|
|
{
|
|
}
|
|
};
|