Skip to content

Commit

Permalink
this fixes the test crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
graebm committed Nov 1, 2024
1 parent 9482541 commit edfed14
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ jobs:
strategy:
matrix:
compiler: [gcc-4.8, gcc-11] # oldest, latest

steps:
# We can't use the `uses: docker://image` version yet, GitHub lacks authentication for actions -> packages
- name: Build ${{ env.PACKAGE_NAME }}
Expand Down
2 changes: 1 addition & 1 deletion include/aws/crt/StlAllocator.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Aws
* Stateful allocator variant that uses an underlying CRT allocator
* @tparam T type that allocator can allocate
*/
template <typename T> class StlAllocator : public std::allocator<T>
template <typename T> class AWS_CRT_CPP_API StlAllocator : public std::allocator<T>
{
public:
using Base = std::allocator<T>;
Expand Down

0 comments on commit edfed14

Please sign in to comment.