feat/support_fiber #2

Merged
tqcq merged 57 commits from feat/support_fiber into master 2024-06-21 10:33:52 +08:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit b881ba6efc - Show all commits

View File

@ -13,7 +13,7 @@ set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_STANDARD 11)
set(CMAKE_C_STANDARD_REQUIRED ON)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)

View File

@ -364,10 +364,10 @@ PolymorphicBuffer MakeForeignBuffer(std::string buffer);
template <typename T>
PolymorphicBuffer MakeForeignBuffer(std::vector<T> buffer);
bool StartsWith(const NoncontiguousBuffer &buffer, Slice prefix);
bool EndsWith(const NoncontiguousBuffer &buffer, Slice suffix);
bool StartsWithIgnoreCase(const NoncontiguousBuffer &buffer, Slice prefix);
bool EndsWithIgnoreCase(const NoncontiguousBuffer &buffer, Slice suffix);
bool StartsWith(NoncontiguousBuffer buffer, Slice prefix);
bool EndsWith(NoncontiguousBuffer buffer, Slice suffix);
bool StartsWithIgnoreCase(NoncontiguousBuffer buffer, Slice prefix);
bool EndsWithIgnoreCase(NoncontiguousBuffer buffer, Slice suffix);
} // namespace tile
#endif // TILE_BASE_BUFFER_H