Skip to content

Commit 7d6c707

Browse files
committed
Updated ProgressBar.h to use size_t in std namespace for consistency
1 parent c04077f commit 7d6c707

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/open3d/utility/ProgressBar.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ namespace utility {
1717

1818
class ProgressBar {
1919
public:
20-
ProgressBar(size_t expected_count,
20+
ProgressBar(std::size_t expected_count,
2121
std::string progress_info,
2222
bool active = false);
23-
void Reset(size_t expected_count, std::string progress_info, bool active);
23+
void Reset(std::size_t expected_count, std::string progress_info, bool active);
2424
inline ProgressBar& operator++() { return *this += 1; };
2525
virtual ProgressBar& operator+=(std::size_t n);
2626
void SetCurrentCount(size_t n);

0 commit comments

Comments
 (0)