add-string-using.patch 441 B

1234567891011121314
  1. --- contrib/libs/protobuf/src/google/protobuf/stubs/common.h (index)
  2. +++ contrib/libs/protobuf/src/google/protobuf/stubs/common.h (working tree)
  3. @@ -124,6 +124,11 @@ void StrongReference(const T& var) {
  4. }
  5. } // namespace internal
  6. +
  7. +// This is at the end of the file instead of the beginning to work around a bug
  8. +// in some versions of MSVC.
  9. +using string = TProtoStringType;
  10. +
  11. } // namespace protobuf
  12. } // namespace google