From f57cb0260e9bad9bb4cc9e249e7237b7443ee3fe Mon Sep 17 00:00:00 2001 From: "Y. Velkov" Date: Fri, 30 Aug 2024 10:16:57 +0300 Subject: [PATCH] some change --- .gitignore | 3 ++- src/my_static_lib.cpp | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b159eae..ae78584 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ build/ -compile_commands.json \ No newline at end of file +compile_commands.json +.cache/ \ No newline at end of file diff --git a/src/my_static_lib.cpp b/src/my_static_lib.cpp index 271923b..dd9eaa2 100644 --- a/src/my_static_lib.cpp +++ b/src/my_static_lib.cpp @@ -1,4 +1,8 @@ int method_in_static_lib() { return 42; +} + +int method_in_static_lib2() { + return 43; } \ No newline at end of file