mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-14 10:17:55 -06:00
Replaced all "long long" types with int64_t
Replaced all "unsigned long long" types with uint64_t. These "new" types better communicate their meaning and they are guaranteed to behave the same on all platforms & compilers.
This commit is contained in:
parent
fbf2978190
commit
bd79036d13
9 changed files with 52 additions and 45 deletions
|
@ -1,6 +1,7 @@
|
|||
#ifndef slic3r_SLAPrint_hpp_
|
||||
#define slic3r_SLAPrint_hpp_
|
||||
|
||||
#include <cstdint>
|
||||
#include <mutex>
|
||||
#include "PrintBase.hpp"
|
||||
#include "SLA/RasterBase.hpp"
|
||||
|
@ -37,7 +38,7 @@ using _SLAPrintObjectBase =
|
|||
|
||||
// Layers according to quantized height levels. This will be consumed by
|
||||
// the printer (rasterizer) in the SLAPrint class.
|
||||
// using coord_t = long long;
|
||||
// using coord_t = int64_t;
|
||||
|
||||
enum SliceOrigin { soSupport, soModel };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue