Skip to content

Commit ec90c71

Browse files
committed
Use #[export] instead of #[global]
1 parent 77262a5 commit ec90c71

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/derive/theories/derive.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
(* since non-uniform inductive parameters are rarely used and the inference
88
code from the kernel is not easily accessible, we require the user to
99
be explicit about them, eg Inductive foo U1 U2 | NU1 NU2 := ... *)
10-
#[global] Set Uniform Inductive Parameters.
10+
#[export] Set Uniform Inductive Parameters.
1111

1212
(** The derive command
1313
The derive command can be invoked in two ways.

apps/derive/theories/derive/eqType_ast.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
From elpi Require Import elpi.
22
From elpi.core Require Import PrimInt63 PrimFloat PrimString.
3-
From elpi.apps Require Import derive.
3+
From elpi.apps Require Export derive.
44

55
From elpi.apps.derive.elpi Extra Dependency "eqType.elpi" as eqType.
66
From elpi.apps.derive.elpi Extra Dependency "derive_hook.elpi" as derive_hook.

apps/derive/theories/derive/lens.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ From elpi.apps.derive.elpi Extra Dependency "derive_hook.elpi" as derive_hook.
77
From elpi.apps.derive.elpi Extra Dependency "derive_synterp_hook.elpi" as derive_synterp_hook.
88

99
From elpi Require Import elpi.
10-
From elpi.apps Require Import derive.
10+
From elpi.apps Require Export derive.
1111

1212
(* Coq stdlib has no lens data type so we declare one here. To override with
1313
your own "copy", use Register as below *)

0 commit comments

Comments
 (0)