Skip to content

Commit

Permalink
fix: Add include cstdint explicitly (#11594)
Browse files Browse the repository at this point in the history
Summary:
Description:
Without the explicit include, it throws error with gcc 13.2 on Ubuntu 24.04.
The fix is to specify it explicitly.

Pull Request resolved: #11594

Reviewed By: Yuhta

Differential Revision: D66204188

Pulled By: kagamiori

fbshipit-source-id: c190035f22ac28883c97260f2e66065e6ae31aac
  • Loading branch information
yabinma authored and facebook-github-bot committed Nov 20, 2024
1 parent b106900 commit c13b8ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions velox/exec/Trace.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

#pragma once

#include <cstdint>
#include <string>

namespace facebook::velox::exec::trace {
Expand Down
1 change: 1 addition & 0 deletions velox/exec/TraceConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

#pragma once

#include <cstdint>
#include <functional>
#include <string>
#include <unordered_set>
Expand Down

0 comments on commit c13b8ed

Please sign in to comment.