Skip to content

Commit

Permalink
Add missing header.
Browse files Browse the repository at this point in the history
When I have tried to build yarpgen on ArchLinux
the build failed with
"/home/dima/work/yarpgen/src/options.h:122:5: error: ‘uint64_t’ does not name a type
  122 |     uint64_t getSeed() { return seed; }
      |     ^~~~~~~~
/home/dima/work/yarpgen/src/options.h:28:1: note: ‘uint64_t’ is defined in header ‘<cstdint>’;..."
  • Loading branch information
chestnykh authored and dbabokin committed Nov 25, 2023
1 parent 4197632 commit d3f19f4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ limitations under the License.
#pragma once

#include "enums.h"
#include <cstdint>
#include <cstdlib>
#include <functional>
#include <map>
Expand Down

0 comments on commit d3f19f4

Please sign in to comment.