Skip to content
Closed
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
40 changes: 0 additions & 40 deletions src/Build/Evaluation/IntrinsicFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,6 @@ internal static double Add(double a, double b)
return a + b;
}

/// <summary>
/// Add two longs
/// </summary>
internal static long Add(long a, long b)
{
return a + b;
}

/// <summary>
/// Subtract two doubles
/// </summary>
Expand All @@ -61,14 +53,6 @@ internal static double Subtract(double a, double b)
return a - b;
}

/// <summary>
/// Subtract two longs
/// </summary>
internal static long Subtract(long a, long b)
{
return a - b;
}

/// <summary>
/// Multiply two doubles
/// </summary>
Expand All @@ -77,14 +61,6 @@ internal static double Multiply(double a, double b)
return a * b;
}

/// <summary>
/// Multiply two longs
/// </summary>
internal static long Multiply(long a, long b)
{
return a * b;
}

/// <summary>
/// Divide two doubles
/// </summary>
Expand All @@ -93,14 +69,6 @@ internal static double Divide(double a, double b)
return a / b;
}

/// <summary>
/// Divide two longs
/// </summary>
internal static long Divide(long a, long b)
{
return a / b;
}

/// <summary>
/// Modulo two doubles
/// </summary>
Expand All @@ -109,14 +77,6 @@ internal static double Modulo(double a, double b)
return a % b;
}

/// <summary>
/// Modulo two longs
/// </summary>
internal static long Modulo(long a, long b)
{
return a % b;
}

/// <summary>
/// Escape the string according to MSBuild's escaping rules
/// </summary>
Expand Down