diff options
Diffstat (limited to 'src/strings/base.tcc')
-rw-r--r-- | src/strings/base.tcc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/strings/base.tcc b/src/strings/base.tcc index a5a57d0..83dff70 100644 --- a/src/strings/base.tcc +++ b/src/strings/base.tcc @@ -17,10 +17,15 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. +#include <cstddef> + #include <algorithm> #include "pair.hpp" + +namespace tmwa +{ namespace strings { namespace detail @@ -440,3 +445,4 @@ namespace strings return pair_compare(l, r) >= 0; } } // namespace strings +} // namespace tmwa |