From bc233c56202f3d4ebc967785a4cd1d3dc8a756f8 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Thu, 5 Oct 2017 16:04:56 -0400 Subject: [PATCH] Update examples to reflect new directory structure --- tz.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tz.html b/tz.html index 45fb4ac..0553d31 100644 --- a/tz.html +++ b/tz.html @@ -160,7 +160,7 @@ format:

-#include "tz.h"
+#include "date/tz.h"
 #include <iostream>
 
 int
@@ -321,7 +321,7 @@ unrelated time zone). What does that look like?
 

-#include "tz.h"
+#include "date/tz.h"
 #include <iostream>
 
 int
@@ -568,7 +568,7 @@ examples involving time zone arithmetic.
 

-#include "tz.h"
+#include "date/tz.h"
 #include <iostream>
 
 int
@@ -642,7 +642,7 @@ was in the air.  This can be taken into account with the following code:
 

-#include "tz.h"
+#include "date/tz.h"
 #include <iostream>
 
 int
@@ -772,7 +772,7 @@ which can hold a UTC offset with minutes precision.
 

-#include "tz.h"
+#include "date/tz.h"
 #include <iostream>
 #include <type_traits>
 
@@ -1514,7 +1514,7 @@ public:
 

-#include "tz.h"
+#include "date/tz.h"
 #include <iostream>
 
 int
@@ -1568,7 +1568,7 @@ public:
 

-#include "tz.h"
+#include "date/tz.h"
 #include <iostream>
 
 int
@@ -3041,7 +3041,7 @@ prior to the leap second.  But the maping between UTC, TAI and GPS is all one-to
 

-#include "tz.h"
+#include "date/tz.h"
 #include <iostream>
 
 int
@@ -3372,7 +3372,7 @@ Example compile command I commonly use on macOS:
 

-clang++ -std=c++14 test.cpp -I../date ../date/tz.cpp -O3 -lcurl
+clang++ -std=c++14 test.cpp -I../date/include ../date/src/tz.cpp -O3 -lcurl
 

Windows specific: