From 9160036e416a82158d88e5ae10bbd04077965efd Mon Sep 17 00:00:00 2001 From: Geoffrey White <40627776+geoffw0@users.noreply.github.com> Date: Mon, 12 May 2025 16:45:41 +0100 Subject: [PATCH] Rust: Rename OperationImpl -> Impl. --- rust/ql/lib/codeql/rust/elements/Operation.qll | 2 +- rust/ql/lib/codeql/rust/elements/internal/OperationImpl.qll | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/ql/lib/codeql/rust/elements/Operation.qll b/rust/ql/lib/codeql/rust/elements/Operation.qll index b3615bddb33..dad24e980ed 100644 --- a/rust/ql/lib/codeql/rust/elements/Operation.qll +++ b/rust/ql/lib/codeql/rust/elements/Operation.qll @@ -2,7 +2,7 @@ * Provides classes for operations. */ -import internal.OperationImpl +import internal.OperationImpl::Impl as OperationImpl private import codeql.rust.elements.internal.ExprImpl::Impl as ExprImpl final class Operation = OperationImpl::Operation; diff --git a/rust/ql/lib/codeql/rust/elements/internal/OperationImpl.qll b/rust/ql/lib/codeql/rust/elements/internal/OperationImpl.qll index 7b2d1a9d62e..deffd72086d 100644 --- a/rust/ql/lib/codeql/rust/elements/internal/OperationImpl.qll +++ b/rust/ql/lib/codeql/rust/elements/internal/OperationImpl.qll @@ -11,7 +11,7 @@ private import codeql.rust.elements.internal.ExprImpl::Impl as ExprImpl * INTERNAL: This module contains the customizable definition of `Operation` and should not * be referenced directly. */ -module OperationImpl { +module Impl { /** * An operation, for example `&&`, `+=`, `!` or `*`. */