Given the following function header, which of the following would not be considered an overload of the add function? int add(int a, double b)
1) int add(int a, double b)
2) double add(int a, double b)
3) int add(double a, int b)
4) int add(int a, int b)