github-actions[bot] commented on code in PR #34691:
URL: https://github.com/apache/doris/pull/34691#discussion_r1599278471


##########
be/src/util/stopwatch.hpp:
##########
@@ -78,7 +78,7 @@ class CustomStopWatch {
     }
 
     // Returns time in nanosecond.
-    uint64_t elapsed_time_seconds(timespec end) const {
+    int64_t elapsed_time_seconds(timespec end) const {

Review Comment:
   warning: unknown type name 'int64_t'; did you mean '__int64_t'? 
[clang-diagnostic-error]
   
   ```suggestion
       __int64_t elapsed_time_seconds(timespec end) const {
   ```
   <details>
   <summary>Additional context</summary>
   
   **/usr/include/x86_64-linux-gnu/bits/types.h:43:** '__int64_t' declared here
   ```cpp
   typedef signed long int __int64_t;
                           ^
   ```
   
   </details>
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to