From b305fe9e3bd7546f5e620ed522d5f1a4de6d0c67 Mon Sep 17 00:00:00 2001 From: Mine Starks Date: Thu, 23 Jan 2025 15:03:53 -0800 Subject: [PATCH] Work around reexport issue in libraries --- library/fixed_point/src/Main.qs | 2 +- library/rotations/src/Main.qs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/library/fixed_point/src/Main.qs b/library/fixed_point/src/Main.qs index b58df7de2a..845e7c59f2 100644 --- a/library/fixed_point/src/Main.qs +++ b/library/fixed_point/src/Main.qs @@ -1,4 +1,4 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -export Init.PrepareFxP, Measurement.MeasureFxP, Reciprocal.ComputeReciprocalFxP, Types.FixedPoint; \ No newline at end of file +export Init.PrepareFxP as PrepareFxP, Measurement.MeasureFxP as MeasureFxP, Reciprocal.ComputeReciprocalFxP as ComputeReciprocalFxP, Types.FixedPoint as FixedPoint; diff --git a/library/rotations/src/Main.qs b/library/rotations/src/Main.qs index d0c6a31b6a..90a46c99a2 100644 --- a/library/rotations/src/Main.qs +++ b/library/rotations/src/Main.qs @@ -1,4 +1,4 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -export HammingWeightPhasing.HammingWeightPhasing; +export HammingWeightPhasing.HammingWeightPhasing as HammingWeightPhasing;