Browse Source

Fix error when not compiling with clang

rdb 8 years ago
parent
commit
1eaa1bcf70
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/pipeline/thread.I

+ 1 - 1
panda/src/pipeline/thread.I

@@ -81,7 +81,7 @@ get_pipeline_stage() const {
   __builtin_assume(_pipeline_stage >= 0);
   return pipeline_stage;
 #else
-  return pipeline_stage;
+  return _pipeline_stage;
 #endif
 }