Skip to content

Commit

Permalink
muted all variadic method arguments per facebook/hhvm#4858 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-phillips committed Feb 22, 2015
1 parent 58955cd commit 3de920d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Col.hh
Expand Up @@ -335,7 +335,7 @@ class Col {
* @param Map<Tk, Tv> $merges
* @return Map<Tk, Tv>
*/
public static function merge<Tk, Tv>(...$merges): Map<Tk, Tv> { // @todo - Variadic doesn't support type hints
public static function merge<Tk, Tv>(/* HH_FIXME[4033]: variadic + strict */ ...$merges): Map<Tk, Tv> {
$base = Map {};

foreach ($merges as $merge) {
Expand Down

0 comments on commit 3de920d

Please sign in to comment.