diff options
author | Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> | 2022-12-03 11:03:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-03 17:03:59 +0100 |
commit | 40e17145a80478b15ba5decb939f1c0119149a81 (patch) | |
tree | 4203b83e7dfe4e76da30ebaf4417e8ddadf0a461 /lib/compilers | |
parent | 85a2f406999f89201e18ddc20879d09725f461ce (diff) | |
download | compiler-explorer-40e17145a80478b15ba5decb939f1c0119149a81.tar.gz compiler-explorer-40e17145a80478b15ba5decb939f1c0119149a81.zip |
Make the linter happy (#4393)gh-5256
Diffstat (limited to 'lib/compilers')
-rw-r--r-- | lib/compilers/carbon.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compilers/carbon.ts b/lib/compilers/carbon.ts index 2dfa1dfe3..47e819b87 100644 --- a/lib/compilers/carbon.ts +++ b/lib/compilers/carbon.ts @@ -22,12 +22,12 @@ // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. +import {ParsedAsmResult} from '../../types/asmresult/asmresult.interfaces'; +import {CompilerInfo} from '../../types/compiler.interfaces'; +import {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces'; import {BaseCompiler} from '../base-compiler'; import {BaseParser} from './argument-parsers'; -import {CompilerInfo} from '../../types/compiler.interfaces'; -import {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces'; -import {ParsedAsmResult} from '../../types/asmresult/asmresult.interfaces'; export class CarbonCompiler extends BaseCompiler { static get key() { |