mirror of
https://github.com/boostorg/static_string.git
synced 2026-01-19 04:42:12 +00:00
This introduces an alternative to basic_static_string designed for use in POD types: Trivially copyable, having a sizeof == N + 1, with no embedded NULs. Placed in example/ to gather user feedback before committing to a public API. See issue #23.
20 lines
438 B
Plaintext
20 lines
438 B
Plaintext
#
|
|
# Copyright (c) 2025 Gennaro Prota (gennaro dot prota at gmail dot com)
|
|
#
|
|
# Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
# file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
|
|
#
|
|
# Official repository: https://github.com/boostorg/static_string
|
|
#
|
|
|
|
import testing ;
|
|
|
|
project
|
|
: requirements
|
|
<include>../../include
|
|
<warnings>extra
|
|
<cxxstd>20
|
|
;
|
|
|
|
run static_cstring_test.cpp ;
|