summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2021-11-24 17:49:07 +0800
committerGitHub <[email protected]>2021-11-24 17:49:07 +0800
commitb5e74bb739c7e56e65f1f1103c16e7ac4dcfcfa1 (patch)
treeebe3d30a51561ab01ab63c178c1ae74afbe4c7d2
parent679c463806be46f4c0d3184bcbe56dbd6a4e1598 (diff)
Update main.cpp
-rw-r--r--tests/projects/c++/protobuf/src/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/projects/c++/protobuf/src/main.cpp b/tests/projects/c++/protobuf/src/main.cpp
index 1e7830c17..dc06458ae 100644
--- a/tests/projects/c++/protobuf/src/main.cpp
+++ b/tests/projects/c++/protobuf/src/main.cpp
@@ -1,10 +1,11 @@
#include <iostream>
#include "test.pb.h"
+#include "subdir/test2.pb.h"
using namespace std;
int main(int argc, char** argv)
{
- cout << "hello world!" << endl;
+ cout << "hello world!" << endl;
return 0;
}