Skip to content

Commit

Permalink
[iss-292]
Browse files Browse the repository at this point in the history
Squashed commit of the following:

commit 3524f38
Author: joaquin.f.fernandez <[email protected]>
Date:   Wed Jan 15 16:36:06 2025 -0300

    Fix overflow in integer and real definitions in sbg.
  • Loading branch information
joaquinffernandez committed Jan 15, 2025
1 parent 5b45511 commit 468a422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mmoc/deps/sbg_graph/container_def.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@

namespace SB {

typedef int Integer;
typedef float Real;
typedef long long int Integer;
typedef double Real;

template <typename T, class = std::allocator<T>>
using OrdCT = std::list<T>;
Expand Down

0 comments on commit 468a422

Please sign in to comment.