We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c04077f commit 7d6c707Copy full SHA for 7d6c707
cpp/open3d/utility/ProgressBar.h
@@ -17,10 +17,10 @@ namespace utility {
17
18
class ProgressBar {
19
public:
20
- ProgressBar(size_t expected_count,
+ ProgressBar(std::size_t expected_count,
21
std::string progress_info,
22
bool active = false);
23
- void Reset(size_t expected_count, std::string progress_info, bool active);
+ void Reset(std::size_t expected_count, std::string progress_info, bool active);
24
inline ProgressBar& operator++() { return *this += 1; };
25
virtual ProgressBar& operator+=(std::size_t n);
26
void SetCurrentCount(size_t n);
0 commit comments