aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-07-25 12:06:51 +0100
committergatecat <gatecat@ds0.me>2021-07-25 12:06:51 +0100
commit0e3b25468cb839039b7a49f0c5b5aba3db19f580 (patch)
treeee9aa03a4898d0ab7aff8b3aa33770889a1b4114 /common
parent5212e38512586a6aea0a3b075d30cd172026cd3e (diff)
downloadnextpnr-0e3b25468cb839039b7a49f0c5b5aba3db19f580.tar.gz
nextpnr-0e3b25468cb839039b7a49f0c5b5aba3db19f580.tar.bz2
nextpnr-0e3b25468cb839039b7a49f0c5b5aba3db19f580.zip
gui: Implement about dialog
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'common')
-rw-r--r--common/nextpnr_assertions.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/nextpnr_assertions.h b/common/nextpnr_assertions.h
index 1dd2a58f..1989aa3a 100644
--- a/common/nextpnr_assertions.h
+++ b/common/nextpnr_assertions.h
@@ -56,6 +56,7 @@ inline void assert_fail_impl_str(std::string message, const char *expr_str, cons
#define NPNR_ASSERT_FALSE(msg) (assert_fail_impl(msg, "false", __FILE__, __LINE__))
#define NPNR_ASSERT_FALSE_STR(msg) (assert_fail_impl_str(msg, "false", __FILE__, __LINE__))
+#define NPNR_STRINGIFY_MACRO(x) NPNR_STRINGIFY(x)
#define NPNR_STRINGIFY(x) #x
NEXTPNR_NAMESPACE_END