Skip to content

Commit

Permalink
Fix indentation in repositories.bzl and header in point_batch.h. (#1386)
Browse files Browse the repository at this point in the history
  • Loading branch information
pifon2a committed Aug 11, 2018
1 parent 73c3d47 commit fe59278
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
27 changes: 14 additions & 13 deletions bazel/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -246,19 +246,20 @@ def cartographer_repositories():
],
)

_maybe(native.http_archive,
name = "com_github_googlecartographer_async_grpc",
strip_prefix = "async_grpc-771af45374af7f7bfc3b622ed7efbe29a4aba403",
urls = [
"https://github.com/googlecartographer/async_grpc/archive/771af45374af7f7bfc3b622ed7efbe29a4aba403.tar.gz",
],
)
_maybe(native.http_archive,
name = "com_google_absl",
sha256 = "387cf016ab1ab8530d1cea8975276ce8d8bff355133776129bdc400d05519eb6",
strip_prefix = "abseil-cpp-44aa275286baf97fc13529aca547a88b180beb08",
urls = ["https://github.com/abseil/abseil-cpp/archive/44aa275286baf97fc13529aca547a88b180beb08.tar.gz"],
)
_maybe(native.http_archive,
name = "com_github_googlecartographer_async_grpc",
strip_prefix = "async_grpc-771af45374af7f7bfc3b622ed7efbe29a4aba403",
urls = [
"https://github.com/googlecartographer/async_grpc/archive/771af45374af7f7bfc3b622ed7efbe29a4aba403.tar.gz",
],
)

_maybe(native.http_archive,
name = "com_google_absl",
sha256 = "387cf016ab1ab8530d1cea8975276ce8d8bff355133776129bdc400d05519eb6",
strip_prefix = "abseil-cpp-44aa275286baf97fc13529aca547a88b180beb08",
urls = ["https://github.com/abseil/abseil-cpp/archive/44aa275286baf97fc13529aca547a88b180beb08.tar.gz"],
)

# TODO(rodrigoq): remove these binds once grpc#14140 has been merged, as well
# as removing `use_external` in cartographer_grpc/BUILD.bazel.
Expand Down
2 changes: 1 addition & 1 deletion cartographer/io/points_batch.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#ifndef CARTOGRAPHER_IO_POINTS_BATCH_H_
#define CARTOGRAPHER_IO_POINTS_BATCH_H_

#include <cartographer/sensor/point_cloud.h>
#include <array>
#include <cstdint>
#include <unordered_set>
Expand All @@ -26,6 +25,7 @@
#include "Eigen/Core"
#include "cartographer/common/time.h"
#include "cartographer/io/color.h"
#include "cartographer/sensor/point_cloud.h"

namespace cartographer {
namespace io {
Expand Down

0 comments on commit fe59278

Please sign in to comment.