Skip to content

Commit d8febca

Browse files
undecided what to do; method needs to be there to avoid ambiguities
1 parent 2654ecb commit d8febca

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/groupby.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,11 @@ Base.broadcasted(f::Function,A,B::ReducedGroupedVariable) =
508508
Base.broadcasted(f::Function,A::ReducedGroupedVariable,B) =
509509
broadcasted_gvr!(similar(B),f,A,B)
510510

511+
function Base.broadcasted(f::Function,A::ReducedGroupedVariable,B::ReducedGroupedVariable)
512+
# undecided what to do
513+
# method needs to be there to avoid ambiguities
514+
error("unimplemented");
515+
end
511516

512517
function Base.Array(gr::ReducedGroupedVariable)
513518
gr[ntuple(i -> Colon(),ndims(gr))...]

0 commit comments

Comments
 (0)