3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-22 16:45:32 +00:00

More Win32 build fixes

This commit is contained in:
Clifford Wolf 2014-10-10 18:34:19 +02:00
parent 2c683102be
commit 54bf3a95dd
2 changed files with 11 additions and 10 deletions

View file

@ -34,6 +34,7 @@
using namespace SubCircuit;
#ifndef _YOSYS_
static std::string my_stringf(const char *fmt, ...)
{
std::string string;
@ -52,6 +53,9 @@ static std::string my_stringf(const char *fmt, ...)
return string;
}
#else
# define my_stringf YOSYS_NAMESPACE_PREFIX stringf
#endif
SubCircuit::Graph::Graph(const Graph &other, const std::vector<std::string> &otherNodes)
{