Выйти из Всего использования Приложений Applescript?

Отсутствует идеальная пересылка. Попробуйте ниже

template
InflateInput(int header, Args&& ...args) : source(std::forward(args)...) {}

Конструктор ниже принимает ссылку на r-значение типа T. Но InflateInput вызывает с параметром (Args), который является l-значением. Отсюда ошибка компилятора.

DeflateInput(T &&stream, int level, int header) : source(std::move(stream)) {}

Вы можете воспроизвести ту же ошибку, например,

DeflateInput deflate3(file, 5, 0)

https://gcc.godbolt.org/z/Oe2q68

12
задан Peter Hosey 22 February 2009 в 23:39
поделиться

1 ответ

Это хорошо... Я думаю, что нашел свой ответ:

tell application "System Events" to set the visible of every process to true

set white_list to {"Finder"}

try
    tell application "Finder"
        set process_list to the name of every process whose visible is true
    end tell
    repeat with i from 1 to (number of items in process_list)
        set this_process to item i of the process_list
        if this_process is not in white_list then
            tell application this_process
                quit
            end tell
        end if
    end repeat
on error
    tell the current application to display dialog "An error has occurred!" & return & "This script will now quit" buttons {"Quit"} default button 1 with icon 0
end try
10
ответ дан 2 December 2019 в 21:45
поделиться
Другие вопросы по тегам:

Похожие вопросы: