Skip to content

Commit

Permalink
Re-order include files
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Sep 6, 2023
1 parent 9d46088 commit cebd007
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions cpp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,10 @@ $(OBJ_GENERATED) : $(SRC_GENERATED) $(OBJDIR)
## between coverage and non-coverage builds.
.DEFAULT_GOAL := all
.PHONY: all docs test coverage lcov
all: $(SRC_GENERATED)
$(MAKE) $(BIN_ALL) docs

test: $(SRC_GENERATED)
$(MAKE) $(BINDIR)/$(PISCSI_TEST)
all: $(SRC_GENERATED) $(BIN_ALL) docs

test: $(SRC_GENERATED) $(BINDIR)/$(PISCSI_TEST)

coverage: CXXFLAGS += --coverage
coverage: test
Expand Down
2 changes: 1 addition & 1 deletion cpp/piscsi/command_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

#pragma once

#include "generated/piscsi_interface.pb.h"
#include "localizer.h"
#include "shared/protobuf_serializer.h"
#include "generated/piscsi_interface.pb.h"
#include <string>

using namespace std;
Expand Down

0 comments on commit cebd007

Please sign in to comment.