diff options
author | friendlyanon <friendlyanon@users.noreply.github.com> | 2020-12-30 22:07:53 +0000 |
---|---|---|
committer | friendlyanon <friendlyanon@users.noreply.github.com> | 2020-12-30 22:07:53 +0000 |
commit | cc0f7a11515c641acd23985e72d1a8fce3c2a67b (patch) | |
tree | c91fd2c98be744ccff2aa482771e81428afb1669 | |
parent | 2415a71e3c41316656d09c5ea7a3f24a21d812ca (diff) |
Fix include path in readme
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ A string of numbers 1 to 100 separated with spaces can be compressed to 64% of i ```cpp // 1. Include -#include "consteval_huffman.hpp" +#include <consteval_huffman/consteval_huffman.hpp> // 2. Use _huffman suffix (data now stores compressed string) auto data = "This is my string of data"_huffman; // "\0\x1 Non-text data works too!" |