blob: 5e16367c62dff0169375e7a8aa09b6d6f3658162 [file] [log] [blame] [edit]
{{/*
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
*/}}
{{- define "ConstDeclaration" }}
{{ EnsureNamespace . }}
{{- .Docs }}
{{- if .Extern }}
extern {{ .Decorator }} {{ .Type }} {{ .Name }};
{{- else }}
{{ .Decorator }} {{ .Type }} {{ .Name }} = {{ .Natural }};
{{- end }}
{{- end }}
{{- define "ConstDefinition" }}
{{- if .Extern }}
{{ EnsureNamespace "::" }}
{{ .Decorator }} {{ .Type }} {{ . }} = {{ .Natural }};
{{- end }}
{{- end }}