C++: Force LF for .c,.cpp,.h,.hpp

This commit is contained in:
Dave Bartolomeo
2018-09-20 11:38:56 -07:00
parent caf4a767ad
commit aa267c8302
200 changed files with 5422 additions and 5417 deletions

View File

@@ -1,17 +1,17 @@
// The extractor will not see a complete definition of Foo for this file.
#include "h.h"
// We want to check that these two variables don't get duplicated in the
// database.
void (*some_func_ptr)(struct Foo *foo);
struct Foo* foo_ptr1;
FooPtr foo_ptr2;
// This definition is incompatible with the one in a.c, so...
struct Bar {
unsigned long bar_x;
};
// ...we'd expect this declaration to create a separate variable in the db
extern struct Bar bar;
// The extractor will not see a complete definition of Foo for this file.
#include "h.h"
// We want to check that these two variables don't get duplicated in the
// database.
void (*some_func_ptr)(struct Foo *foo);
struct Foo* foo_ptr1;
FooPtr foo_ptr2;
// This definition is incompatible with the one in a.c, so...
struct Bar {
unsigned long bar_x;
};
// ...we'd expect this declaration to create a separate variable in the db
extern struct Bar bar;