Commit 8954a9c5 authored by Marc Gravell's avatar Marc Gravell

clean up some compiler warnings

parent e2d5e9e3
...@@ -35,7 +35,9 @@ static void MassiveBulkOpsAsync(int AsyncOpsQty, bool preserveOrder, bool withCo ...@@ -35,7 +35,9 @@ static void MassiveBulkOpsAsync(int AsyncOpsQty, bool preserveOrder, bool withCo
var conn = muxer.GetDatabase(); var conn = muxer.GetDatabase();
muxer.Wait(conn.PingAsync()); muxer.Wait(conn.PingAsync());
#if DNXCORE50
int number = 0; int number = 0;
#endif
Action<Task> nonTrivial = delegate Action<Task> nonTrivial = delegate
{ {
#if !DNXCORE50 #if !DNXCORE50
......
...@@ -10,10 +10,15 @@ namespace StackExchange.Redis ...@@ -10,10 +10,15 @@ namespace StackExchange.Redis
/// </summary> /// </summary>
public sealed class EndPointCollection : Collection<EndPoint> public sealed class EndPointCollection : Collection<EndPoint>
{ {
/// <summary>
/// Create a new EndPointCollection
/// </summary>
public EndPointCollection() : base() public EndPointCollection() : base()
{ {
} }
/// <summary>
/// Create a new EndPointCollection
/// </summary>
public EndPointCollection(IList<EndPoint> endpoints) : base(endpoints) public EndPointCollection(IList<EndPoint> endpoints) : base(endpoints)
{ {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment