Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ addons:
- pkg-config

before_install:
- wget https://github.com/bazelbuild/bazel/releases/download/0.9.0/bazel_0.9.0-linux-x86_64.deb
- sudo dpkg -i bazel_0.9.0-linux-x86_64.deb
- wget https://github.com/bazelbuild/bazel/releases/download/0.17.2/bazel_0.17.2-linux-x86_64.deb
- sudo dpkg -i bazel_0.17.2-linux-x86_64.deb

script:
- bazel test ...
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ http_archive(

http_archive(
name = "com_google_protobuf",
strip_prefix = "protobuf-3.5.0",
urls = ["https://github.com/google/protobuf/archive/v3.5.0.zip"],
strip_prefix = "protobuf-3.5.1",
urls = ["https://github.com/google/protobuf/archive/v3.5.1.zip"],
)

http_archive(
Expand Down
13 changes: 0 additions & 13 deletions common/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -184,23 +184,10 @@ cc_library(
cc_test(
name = "converters_test",
srcs = ["converters_test.cc"],
data = [
"@com_google_cel_spec//testdata",
],
deps = [
":converters",
":value",
"@com_google_absl//absl/memory",
"@com_google_googletest//:gtest_main",
],
)

cc_library(
name = "cel_operators",
srcs = [
"cel_operators.cc",
],
hdrs = [
"cel_operators.h",
],
)
34 changes: 0 additions & 34 deletions common/cel_operators.cc

This file was deleted.

40 changes: 0 additions & 40 deletions common/cel_operators.h

This file was deleted.

4 changes: 2 additions & 2 deletions common/type.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ class Type final {
inline EnumType enum_type() const { return absl::get<EnumType>(data_); }
inline ObjectType object_type() const { return absl::get<ObjectType>(data_); }

constexpr inline bool operator==(const Type& rhs) const {
inline bool operator==(const Type& rhs) const {
return data_ == rhs.data_;
}
constexpr inline bool operator!=(const Type& rhs) const {
inline bool operator!=(const Type& rhs) const {
return data_ != rhs.data_;
}

Expand Down