assignUser commented on issue #36969:
URL: https://github.com/apache/arrow/issues/36969#issuecomment-1668735181

   I think these are the relevant issues that are cause by gcc 13 
https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
   ```
   abseil-cpp/absl/strings/internal/str_format/extension.h:34:6: warning: 
elaborated-type-specifier for a scoped enum must not use the ‘class’ keyword
      34 | enum class FormatConversionChar : uint8_t;
         | ~~~~ ^~~~~
         |      -----
   abseil-cpp/absl/strings/internal/str_format/extension.h:34:33: error: found 
‘:’ in nested-name-specifier, expected ‘::’
      34 | enum class FormatConversionChar : uint8_t;
         |                                 ^
         |                                 ::
   ```
   
   ```
   abseil-cpp/absl/strings/internal/str_format/extension.h:29:1: note: 
‘uint8_t’ is defined in header ‘<cstdint>’; did you forget to ‘#include 
<cstdint>’?
      28 | #include "absl/strings/internal/str_format/output.h"
     +++ |+#include <cstdint>
      29 | #include "absl/strings/string_view.h"
   abseil-cpp/absl/strings/internal/str_format/extension.h:187:29: error: 
default member initializer for unnamed bit-field
     187 |   enum class Enum : uint8_t {
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to