Skip to content

Commit 96ad72e

Browse files
authored
Merge pull request google#127 from tpudlik/ischar
Stop using std::basic_string<unsigned char>
2 parents dc5a0f1 + 2e0b8a9 commit 96ad72e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

runtime/cpp/test/emboss_memory_util_test.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
#include <string>
1516
#if __cplusplus >= 201703L
1617
#include <string_view>
1718
#endif // __cplusplus >= 201703L
@@ -221,7 +222,7 @@ class ReadOnlyContiguousBufferTest : public ::testing::Test {};
221222
typedef ::testing::Types<
222223
/**/ ::std::vector<char>, ::std::array<char, 8>,
223224
::std::vector<unsigned char>, ::std::vector<signed char>, ::std::string,
224-
::std::basic_string<signed char>, ::std::basic_string<unsigned char>,
225+
::std::basic_string<char>,
225226
::std::vector<unsigned char, NonstandardAllocator<unsigned char>>,
226227
::std::basic_string<char, ::std::char_traits<char>,
227228
NonstandardAllocator<char>>>

0 commit comments

Comments
 (0)