Skip to content

Commit

Permalink
🐛 should use correct namespace when imported
Browse files Browse the repository at this point in the history
  • Loading branch information
fluffynuts committed Oct 23, 2024
1 parent 1a189d5 commit ebc7a4c
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
using System.Collections;
using System.Collections.Generic;

#if BUILD_PEANUTBUTTER_INTERNAL
namespace Imported.PeanutButter.Utils.Dictionaries;
#else
namespace PeanutButter.Utils.Dictionaries;
#endif

internal interface IOrderedDictionary<TKey, TValue> : IDictionary<TKey, TValue>
{
Expand Down

0 comments on commit ebc7a4c

Please sign in to comment.