From 5b5f998292bfc28f88ff5b31fec563647834e94a Mon Sep 17 00:00:00 2001 From: Joscha Schmiedt <schmiedt@uni-bremen.de> Date: Thu, 5 Sep 2024 17:08:32 +0200 Subject: [PATCH] Fix accidentally changed includes --- src/linkahead/transaction.cpp | 2 +- test/test_entity.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/linkahead/transaction.cpp b/src/linkahead/transaction.cpp index cf29ae2..08d507f 100644 --- a/src/linkahead/transaction.cpp +++ b/src/linkahead/transaction.cpp @@ -19,7 +19,7 @@ */ #include "linkahead/transaction.h" #include "caosdb/entity/v1/main.pb.h" // for EntityTransac... -#include "caosdb/entity/v1/main.pb.h" // for TransactionRe... +#include "caosdb/entity/v1/main.grpc.pb.h" // for TransactionRe... #include "linkahead/file_transmission/download_request_handler.h" // Download... #include "linkahead/file_transmission/file_reader.h" // for path #include "linkahead/file_transmission/register_file_upload_handler.h" // for RegisterFileUploadHandler diff --git a/test/test_entity.cpp b/test/test_entity.cpp index de9154c..c360900 100644 --- a/test/test_entity.cpp +++ b/test/test_entity.cpp @@ -23,7 +23,7 @@ #include "linkahead/data_type.h" // for DataType, AtomicDat... #include "linkahead/entity.h" // for Entity, Property #include "caosdb/entity/v1/main.pb.h" // for EntityTransactionSe... -#include "caosdb/entity/v1/main.pb.h" // for IdResponse, Message +#include "caosdb/entity/v1/main.grpc.pb.h" // for IdResponse, Message #include "linkahead/message_code.h" // for MessageCode, ENTITY... #include "linkahead/protobuf_helper.h" // for get_arena #include "linkahead/status_code.h" // for StatusCode, FILE_DO... -- GitLab