diff options
author | lloyd <[email protected]> | 2009-12-01 15:36:30 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-12-01 15:36:30 +0000 |
commit | 29e9b23500d101f01988a33e8f1a6aaab39d5f7d (patch) | |
tree | 28fdc5244d6b618b09a4b0d80fd1708a56401e77 /doc/examples/ca.cpp | |
parent | 9ffe4441271ff41fd33fc3965c191e62bce36453 (diff) |
Most files including <botan/time.h> actually just needed <chrono>
Clean up implementation of calendar_value() a bit
Diffstat (limited to 'doc/examples/ca.cpp')
-rw-r--r-- | doc/examples/ca.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/ca.cpp b/doc/examples/ca.cpp index 8be0fa527..8ca6228c2 100644 --- a/doc/examples/ca.cpp +++ b/doc/examples/ca.cpp @@ -15,11 +15,11 @@ #include <botan/botan.h> #include <botan/x509_ca.h> -#include <botan/time.h> using namespace Botan; #include <iostream> #include <memory> +#include <chrono> int main(int argc, char* argv[]) { |