Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: martinmoene/string-view-lite
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.7.0
Choose a base ref
...
head repository: martinmoene/string-view-lite
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.8.0
Choose a head ref
  • 15 commits
  • 10 files changed
  • 4 contributors

Commits on Aug 14, 2022

  1. Configuration menu
    Copy the full SHA
    6e90d37 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2022

  1. silence compiler warnings for gcc 4.7 and before (#53, thanks @DerDakon)

    The option -Wliteral-suffix was introduced in gcc 4.8, and
    "#pragma GCC diagnostic push" was added in 4.6. Using the header with an older
    gcc would lead to warnings like:
    
    string_view.hpp:438: warning: expected [error|warning|ignored] after '#pragma GCC diagnostic'
    string_view.hpp:439: warning: unknown option after '#pragma GCC diagnostic' kind
    string_view.hpp:1681: warning: expected [error|warning|ignored] after '#pragma GCC diagnostic'
    DerDakon authored Oct 12, 2022
    Configuration menu
    Copy the full SHA
    ced5f2e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    23e835a View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2022

  1. Configuration menu
    Copy the full SHA
    ba99568 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2022

  1. fix build with gcc 4.9 as the first version of find() can't be conste…

    …xpr then (#54, thanks @DerDakon)
    
    The build error is:
    
      string_view.hpp:859:5: error: body of constexpr function 'constexpr nonstd::sv_lite::basic_string_view<CharT, Traits>::size_type nonstd::sv_lite::basic_string_view<CharT, Traits>::find(nonstd::sv_lite::basic_string_view<CharT, Traits>, nonstd::sv_lite::basic_string_view<CharT, Traits>::size_type) const [with CharT = char; Traits = std::char_traits<char>; nonstd::sv_lite::basic_string_view<CharT, Traits>::size_type = unsigned int]' not a return-statement
    DerDakon authored Oct 20, 2022
    Configuration menu
    Copy the full SHA
    cc67e97 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2022

  1. Configuration menu
    Copy the full SHA
    7520e10 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    35d9390 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2022

  1. Configuration menu
    Copy the full SHA
    83871dc View commit details
    Browse the repository at this point in the history
  2. Remove Travis CI configuration and badge (#56, thanks @striezel)

    The tests are not running on Travis CI anymore, so there is no
    point in keeping that stuff around.
    
    [skip ci]
    striezel authored Dec 3, 2022
    Configuration menu
    Copy the full SHA
    5b1d95f View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2023

  1. [skip ci] Correct comment

    martinmoene committed Dec 28, 2023
    Configuration menu
    Copy the full SHA
    5e8d492 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2023

  1. Add configuration macro nssv_CONFIG_CONSTEXPR11_STD_SEARCH (#50, thanks

    @oliverlee)
    
    Allow to avoid constexpr with std::search() and select a local implementation for it for C++14 constexpr.
    martinmoene committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    bac9b55 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2024

  1. Configuration menu
    Copy the full SHA
    6e5e519 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2024

  1. Configuration menu
    Copy the full SHA
    bf9e723 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2024

  1. Configuration menu
    Copy the full SHA
    5f32805 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2024

  1. Release 1.8.0

    martinmoene committed Jun 8, 2024
    Configuration menu
    Copy the full SHA
    a47222b View commit details
    Browse the repository at this point in the history
Loading