From 12646178ee7d99a540344d3de371d8df887c1665 Mon Sep 17 00:00:00 2001 From: Davis King Date: Mon, 18 Feb 2019 07:59:14 -0500 Subject: [PATCH] updated docs --- docs/docs/faq.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/docs/faq.xml b/docs/docs/faq.xml index 28d949af5..35449035e 100644 --- a/docs/docs/faq.xml +++ b/docs/docs/faq.xml @@ -57,8 +57,9 @@ - You are getting this error because you are not compiling all the C++ - code in your program with consistent settings. This is a violation of + You are getting this error because you either forgot to link to dlib, + or are not compiling all the C++ code in your program with consistent + settings. The latter is wrong because it is a violation of C++'s One Definition Rule. In this case, you are compiling some translation units with dlib's assert macros enabled and others with them disabled.