Skip to content

Commit

Permalink
Work around reexport issue in libraries (#2121)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
minestarks authored Jan 24, 2025
1 parent e4ef02e commit fe18697
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/fixed_point/src/Main.qs
Original file line number Diff line number Diff line change
@@ -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;
export Init.PrepareFxP as PrepareFxP, Measurement.MeasureFxP as MeasureFxP, Reciprocal.ComputeReciprocalFxP as ComputeReciprocalFxP, Types.FixedPoint as FixedPoint;
2 changes: 1 addition & 1 deletion library/rotations/src/Main.qs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

export HammingWeightPhasing.HammingWeightPhasing;
export HammingWeightPhasing.HammingWeightPhasing as HammingWeightPhasing;

0 comments on commit fe18697

Please sign in to comment.