libshit

Just some random shit
git clone https://git.neptards.moe/neptards/libshit.git
Log | Files | Refs | Submodules | README | LICENSE

string (257B)


      1 // -*- c++ -*-
      2 #pragma once
      3 
      4 #include_next <string>
      5 
      6 namespace std
      7 {
      8   inline namespace literals
      9   {
     10     inline namespace string_literals
     11     {
     12       inline std::string operator ""s(const char* str, std::size_t len)
     13       { return {str, len}; }
     14     }
     15   }
     16 }