Coder Social home page Coder Social logo

Comments (2)

PythonCoderAS avatar PythonCoderAS commented on May 2, 2024

When I try manually upping the C++ stdlib version, I get these errors (on MacOS 13):

Command used: clang -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.sdk -I/usr/local/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.11/include/python3.11 -c _re2.cc -o _re2.o -std=c++14

In file included from _re2.cc:37:
In file included from /usr/local/include/re2/re2.h:219:
In file included from /usr/local/include/absl/types/optional.h:39:
/usr/local/include/absl/utility/utility.h:164:12: error: no member named 'in_place_t' in namespace 'std'
using std::in_place_t;
      ~~~~~^
/usr/local/include/absl/utility/utility.h:165:12: error: no member named 'in_place' in namespace 'std'
using std::in_place;
      ~~~~~^
/usr/local/include/absl/utility/utility.h:181:12: error: no member named 'in_place_type' in namespace 'std'
using std::in_place_type;
      ~~~~~^
/usr/local/include/absl/utility/utility.h:182:12: error: no member named 'in_place_type_t' in namespace 'std'
using std::in_place_type_t;
      ~~~~~^
/usr/local/include/absl/utility/utility.h:198:12: error: no member named 'in_place_index' in namespace 'std'
using std::in_place_index;
      ~~~~~^
/usr/local/include/absl/utility/utility.h:199:12: error: no member named 'in_place_index_t' in namespace 'std'
using std::in_place_index_t;
      ~~~~~^
In file included from _re2.cc:37:
In file included from /usr/local/include/re2/re2.h:219:
/usr/local/include/absl/types/optional.h:48:12: error: no member named 'optional' in namespace 'std'
using std::optional;
      ~~~~~^
/usr/local/include/absl/types/optional.h:49:12: error: no member named 'make_optional' in namespace 'std'
using std::make_optional;
      ~~~~~^
/usr/local/include/absl/types/optional.h:50:12: error: no member named 'nullopt_t' in namespace 'std'; did you mean 'nullptr_t'?
using std::nullopt_t;
      ~~~~~^~~~~~~~~
           nullptr_t
/Library/Developer/CommandLineTools/SDKs/MacOSX13.sdk/usr/include/c++/v1/cstddef:50:9: note: 'nullptr_t' declared here
using ::nullptr_t;
        ^
In file included from _re2.cc:37:
In file included from /usr/local/include/re2/re2.h:219:
/usr/local/include/absl/types/optional.h:51:12: error: no member named 'nullopt' in namespace 'std'
using std::nullopt;
      ~~~~~^
In file included from _re2.cc:37:
/usr/local/include/re2/re2.h:835:46: error: no member named 'optional' in namespace 'absl'
template <typename T> struct Parse3ary<absl::optional<T>> : public Parse3ary<T> {};
                                       ~~~~~~^
/usr/local/include/re2/re2.h:835:55: error: 'T' does not refer to a value
template <typename T> struct Parse3ary<absl::optional<T>> : public Parse3ary<T> {};
                                                      ^
/usr/local/include/re2/re2.h:835:20: note: declared here
template <typename T> struct Parse3ary<absl::optional<T>> : public Parse3ary<T> {};
                   ^
/usr/local/include/re2/re2.h:835:57: error: expected unqualified-id
template <typename T> struct Parse3ary<absl::optional<T>> : public Parse3ary<T> {};
                                                        ^
/usr/local/include/re2/re2.h:836:46: error: no member named 'optional' in namespace 'absl'
template <typename T> struct Parse4ary<absl::optional<T>> : public Parse4ary<T> {};
                                       ~~~~~~^
/usr/local/include/re2/re2.h:836:55: error: 'T' does not refer to a value
template <typename T> struct Parse4ary<absl::optional<T>> : public Parse4ary<T> {};
                                                      ^
/usr/local/include/re2/re2.h:836:20: note: declared here
template <typename T> struct Parse4ary<absl::optional<T>> : public Parse4ary<T> {};
                   ^
/usr/local/include/re2/re2.h:836:57: error: expected unqualified-id
template <typename T> struct Parse4ary<absl::optional<T>> : public Parse4ary<T> {};
                                                        ^
/usr/local/include/re2/re2.h:839:45: error: no template named 'optional' in namespace 'absl'
bool Parse(const char* str, size_t n, absl::optional<T>* dest) {
                                      ~~~~~~^
/usr/local/include/re2/re2.h:855:45: error: no template named 'optional' in namespace 'absl'
bool Parse(const char* str, size_t n, absl::optional<T>* dest, int radix) {
                                      ~~~~~~^
_re2.cc:211:3: warning: suggest braces around initialization of subobject [-Wmissing-braces]
  PyObject_HEAD_INIT(NULL)
  ^~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.11/include/python3.11/object.h:81:5: note: expanded from macro 'PyObject_HEAD_INIT'
    1, type },
    ^~~~~~~
_re2.cc:255:3: warning: suggest braces around initialization of subobject [-Wmissing-braces]
  PyObject_HEAD_INIT(NULL)
  ^~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.11/include/python3.11/object.h:81:5: note: expanded from macro 'PyObject_HEAD_INIT'
    1, type },
    ^~~~~~~
_re2.cc:299:3: warning: suggest braces around initialization of subobject [-Wmissing-braces]
  PyObject_HEAD_INIT(NULL)
  ^~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.11/include/python3.11/object.h:81:5: note: expanded from macro 'PyObject_HEAD_INIT'
    1, type },
    ^~~~~~~
3 warnings and 18 errors generated.

from pyre2.

PythonCoderAS avatar PythonCoderAS commented on May 2, 2024

I fixed this by going up to c++17.

from pyre2.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.