chore: import upstream snapshot with attribution
This commit is contained in:
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
#include "Foo.h"
|
||||
|
||||
void Foo::bar() {
|
||||
value = 1;
|
||||
}
|
||||
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
#ifndef FOO_H
|
||||
#define FOO_H
|
||||
|
||||
class Foo {
|
||||
public:
|
||||
void bar();
|
||||
int value;
|
||||
};
|
||||
|
||||
#endif
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
#include "Foo.h"
|
||||
|
||||
int main() {
|
||||
Foo f;
|
||||
f.bar();
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user