Moved func. declaration to the .h file
Signed-off-by: Maciej Kurc <mkurc@antmicro.com>
diff --git a/utils/fasm/src/fasm_utils.h b/utils/fasm/src/fasm_utils.h
index 983ed9e..750bd1d 100644
--- a/utils/fasm/src/fasm_utils.h
+++ b/utils/fasm/src/fasm_utils.h
@@ -23,6 +23,9 @@
std::string delims,
std::string ignore);
+// Searches for tags in given string, returns their names in a vector.
+std::vector<std::string> find_tags_in_feature (const std::string& a_String);
+
// Substitutes tags found in a string with their values provided by the map.
// Thorws an error if a tag is found in the string and its value is not present
// in the map.
diff --git a/utils/fasm/test/test_fasm.cpp b/utils/fasm/test/test_fasm.cpp
index f1a94a5..6be454f 100644
--- a/utils/fasm/test/test_fasm.cpp
+++ b/utils/fasm/test/test_fasm.cpp
@@ -16,10 +16,6 @@
static constexpr const char kArchFile[] = "test_fasm_arch.xml";
static constexpr const char kRrGraphFile[] = "test_fasm_rrgraph.xml";
-// Prototype here to be able to test it
-namespace fasm {
-std::vector<std::string> find_tags_in_feature (const std::string& a_String);
-}
namespace {