Skip to content

Commit

Permalink
refactor: Reorder #includes to fix Windows build (#677)
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Walworth <[email protected]>
  • Loading branch information
rwalworth authored Mar 18, 2024
1 parent fb37a00 commit 22eb121
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions src/sdk/main/include/ContractInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#include <memory>
#include <optional>
#include <string>
#include <unordered_map>

namespace proto
{
Expand Down
5 changes: 3 additions & 2 deletions src/sdk/main/src/AccountBalanceQuery.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@
* limitations under the License.
*
*/
#include "AccountBalanceQuery.h"
#include <proto/crypto_get_account_balance.pb.h>

#include "AccountBalance.h"
#include "AccountBalanceQuery.h"
#include "TokenId.h"
#include "exceptions/UninitializedException.h"
#include "impl/MirrorNodeGateway.h"
#include "impl/Node.h"

#include <proto/crypto_get_account_balance.pb.h>
#include <proto/query.pb.h>
#include <proto/query_header.pb.h>
#include <proto/response.pb.h>
Expand Down
5 changes: 3 additions & 2 deletions src/sdk/main/src/AccountInfoQuery.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@
* limitations under the License.
*
*/
#include "AccountInfoQuery.h"
#include <proto/crypto_get_info.pb.h>

#include "AccountInfo.h"
#include "AccountInfoQuery.h"
#include "TokenId.h"
#include "TokenRelationship.h"
#include "impl/MirrorNodeGateway.h"
#include "impl/Node.h"

#include <proto/crypto_get_info.pb.h>
#include <proto/query.pb.h>
#include <proto/query_header.pb.h>
#include <proto/response.pb.h>
Expand Down
5 changes: 3 additions & 2 deletions src/sdk/main/src/ContractInfoQuery.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
* limitations under the License.
*
*/
#include "ContractInfoQuery.h"
#include <proto/contract_get_info.pb.h>

#include "ContractInfo.h"
#include "ContractInfoQuery.h"
#include "impl/MirrorNodeGateway.h"
#include "impl/Node.h"

#include <proto/contract_get_info.pb.h>
#include <proto/query.pb.h>
#include <proto/query_header.pb.h>
#include <proto/response.pb.h>
Expand Down

0 comments on commit 22eb121

Please sign in to comment.