We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b397b0 commit 5601370Copy full SHA for 5601370
DotNet.BackEnd.CCI/CciHost.n
@@ -42,7 +42,7 @@ namespace Nitra.BackEnd.Cci
42
43
public override OpenBinaryDocument(parentSourceDocument : IBinaryDocument, childDocumentName : string) : IBinaryDocumentMemoryBlock
44
{
45
- def directory = Path.GetDirectoryName(parentSourceDocument.Location)??"";
+ def directory = Path.GetDirectoryName(parentSourceDocument.Location) ?? "";
46
def fullPath = Path.Combine(directory, childDocumentName);
47
def newBinaryDocument = BinaryDocument.GetBinaryDocumentForFile(fullPath, this) : IBinaryDocument;
48
def binDocMemoryBlock = UnmanagedBinaryMemoryBlock.CreateUnmanagedBinaryMemoryBlock(newBinaryDocument.Location, newBinaryDocument);
0 commit comments