Skip to content
Merged
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
1 change: 0 additions & 1 deletion common/values/bool_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ namespace cel {

class Value;
class BoolValue;
class TypeManager;

// `BoolValue` represents values of the primitive `bool` type.
class BoolValue final : private common_internal::ValueMixin<BoolValue> {
Expand Down
1 change: 0 additions & 1 deletion common/values/bytes_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ namespace cel {

class Value;
class BytesValue;
class TypeManager;
class BytesValueInputStream;
class BytesValueOutputStream;

Expand Down
1 change: 0 additions & 1 deletion common/values/double_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ namespace cel {

class Value;
class DoubleValue;
class TypeManager;

class DoubleValue final : private common_internal::ValueMixin<DoubleValue> {
public:
Expand Down
1 change: 0 additions & 1 deletion common/values/duration_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ namespace cel {

class Value;
class DurationValue;
class TypeManager;

DurationValue UnsafeDurationValue(absl::Duration value);

Expand Down
1 change: 0 additions & 1 deletion common/values/int_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ namespace cel {

class Value;
class IntValue;
class TypeManager;

// `IntValue` represents values of the primitive `int` type.
class IntValue final : private common_internal::ValueMixin<IntValue> {
Expand Down
1 change: 0 additions & 1 deletion common/values/legacy_list_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ class CelList;

namespace cel {

class TypeManager;
class Value;

namespace common_internal {
Expand Down
1 change: 0 additions & 1 deletion common/values/legacy_map_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ class CelMap;

namespace cel {

class TypeManager;
class Value;

namespace common_internal {
Expand Down
1 change: 0 additions & 1 deletion common/values/legacy_struct_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ class LegacyTypeInfoApis;
namespace cel {

class Value;
class TypeManager;

namespace common_internal {

Expand Down
1 change: 0 additions & 1 deletion common/values/list_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ namespace cel {
class ListValueInterface;
class ListValue;
class Value;
class TypeManager;

class ListValue final : private common_internal::ListValueMixin<ListValue> {
public:
Expand Down
1 change: 0 additions & 1 deletion common/values/map_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ namespace cel {
class MapValueInterface;
class MapValue;
class Value;
class TypeManager;

absl::Status CheckMapKey(const Value& key);

Expand Down
1 change: 0 additions & 1 deletion common/values/null_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ namespace cel {

class Value;
class NullValue;
class TypeManager;

// `NullValue` represents values of the primitive `duration` type.

Expand Down
1 change: 0 additions & 1 deletion common/values/string_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ namespace cel {

class Value;
class StringValue;
class TypeManager;

namespace common_internal {
absl::string_view LegacyStringValue(const StringValue& value, bool stable,
Expand Down
1 change: 0 additions & 1 deletion common/values/struct_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ namespace cel {

class StructValue;
class Value;
class TypeManager;

class StructValue final
: private common_internal::StructValueMixin<StructValue> {
Expand Down
1 change: 0 additions & 1 deletion common/values/timestamp_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ namespace cel {

class Value;
class TimestampValue;
class TypeManager;

TimestampValue UnsafeTimestampValue(absl::Time value);

Expand Down
1 change: 0 additions & 1 deletion common/values/type_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ namespace cel {

class Value;
class TypeValue;
class TypeManager;

// `TypeValue` represents values of the primitive `type` type.
class TypeValue final : private common_internal::ValueMixin<TypeValue> {
Expand Down
1 change: 0 additions & 1 deletion common/values/uint_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ namespace cel {

class Value;
class UintValue;
class TypeManager;

// `UintValue` represents values of the primitive `uint` type.
class UintValue final : private common_internal::ValueMixin<UintValue> {
Expand Down
1 change: 0 additions & 1 deletion common/values/unknown_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ namespace cel {

class Value;
class UnknownValue;
class TypeManager;

// `UnknownValue` represents values of the primitive `duration` type.
class UnknownValue final : private common_internal::ValueMixin<UnknownValue> {
Expand Down