Skip to content

Commit fe18697

Browse files
authored
Work around reexport issue in libraries (#2121)
Works around #1955 in the libraries we publish by reexporting the items under an alias. This change should make no difference to the intended public API of the library.
1 parent e4ef02e commit fe18697

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: library/fixed_point/src/Main.qs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
export Init.PrepareFxP, Measurement.MeasureFxP, Reciprocal.ComputeReciprocalFxP, Types.FixedPoint;
4+
export Init.PrepareFxP as PrepareFxP, Measurement.MeasureFxP as MeasureFxP, Reciprocal.ComputeReciprocalFxP as ComputeReciprocalFxP, Types.FixedPoint as FixedPoint;

Diff for: library/rotations/src/Main.qs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
export HammingWeightPhasing.HammingWeightPhasing;
4+
export HammingWeightPhasing.HammingWeightPhasing as HammingWeightPhasing;

0 commit comments

Comments
 (0)