Skip to content

Commit

Permalink
Use full path in #include directive in Driver.cpp (facebookincubator#…
Browse files Browse the repository at this point in the history
…10480)

Summary:
`#include "Driver.h"` --> `#include "velox/exec/Driver.h"`

All other files in the code repository use full paths, so this file
should do the same to be consistent.

No functional changes.

Pull Request resolved: facebookincubator#10480

Reviewed By: Yuhta

Differential Revision: D59872849

Pulled By: kevinwilfong

fbshipit-source-id: bb4324c79e93d5cb2a67318ac4827bdb7fecd9cb
  • Loading branch information
lingbin authored and facebook-github-bot committed Jul 17, 2024
1 parent 445a568 commit 1bcb0bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion velox/exec/Driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include "Driver.h"
#include "velox/exec/Driver.h"
#include <folly/ScopeGuard.h>
#include <folly/executors/QueuedImmediateExecutor.h>
#include <folly/executors/thread_factory/InitThreadFactory.h>
Expand Down

0 comments on commit 1bcb0bc

Please sign in to comment.