From 8e8676d989c7a898ed6dfa89647dfb8e14320108 Mon Sep 17 00:00:00 2001 From: Ben Peachey Higdon Date: Tue, 15 Feb 2022 01:51:18 -0500 Subject: [PATCH] Add a compat entry for three argument div (#44181) --- base/div.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/base/div.jl b/base/div.jl index bf2b38c93537e..a2f7a39eb7053 100644 --- a/base/div.jl +++ b/base/div.jl @@ -12,6 +12,9 @@ an integer according to the rounding mode `r`. In other words, the quantity without any intermediate rounding. +!!! compat "Julia 1.4" + The three-argument method taking a `RoundingMode` requires Julia 1.4 or later. + See also [`fld`](@ref) and [`cld`](@ref), which are special cases of this function. # Examples: