Skip to content

Commit 9d83790

Browse files
committed
[lldb] Fix build error in ValueObject test
Fixes 0cbc498. llvm-project/lldb/unittests/ValueObject/DynamicValueObjectLocalBuffer.cpp(221): error C2065: 'u_int8_t': undeclared identifier
1 parent 1930524 commit 9d83790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/unittests/ValueObject/DynamicValueObjectLocalBuffer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ class DynamicValueObjectLocalBufferTest : public ::testing::Test {
218218
TEST_F(DynamicValueObjectLocalBufferTest, BufferTooSmall) {
219219
/// Test that a value object with a buffer to small to fit the
220220
/// "dynamic" type will return an invalid dynamic value object.
221-
u_int8_t value = 1;
221+
uint8_t value = 1;
222222
ByteOrder endian = endian::InlHostByteOrder();
223223
DataExtractor data_extractor{&value, sizeof(value), endian, 4};
224224
TestValueObjectWithLocalBuffer(data_extractor, false);

0 commit comments

Comments
 (0)