來自蓋烏斯·馬利烏斯的垮台之後,於是路基烏斯·蘇拉,後者向羅馬推進,而且使他自己被委任至一個純然地新的職務,共和體制獨裁官(dictator rei publicae constituendae causa),它是職能地相同於戰事獨裁官,除了它缺乏任何時間的界限之外。蘇拉在他自願地放棄并從政壇退隱之前,握有這項職務好幾年。
凱撒在三月十五日(Ides of March)被謀殺之後,他的執政官同僚馬克·安东尼通過了安東尼法(lex Antonia),它撤銷了獨裁官任期,并且将它從共和国的宪法除去。這個職務後來提供給凱撒·奥古斯都烏斯,此人謹慎地拒絕它,而选择了保民官的權力與執政官的統治大權,除最高祭司與第一元老之外未握有任何職務。这項政治上的安排使得他成為職能上的獨裁官,而没有必要拥有这一引起爭議和嫉恨的頭銜或職務。
宪政史(英语:History of the Roman Constitution) · 王国宪政(英语:Constitution of the Roman Kingdom) ·共和国宪政(英语:Constitution of the Roman Republic) ·帝国宪政(英语:Constitution of the Roman Empire) ·晚期帝国宪政(英语:Constitution of the Late Roman Empire) · 元老院 · 人民代表会议(区会议 /百人队会议 /平民会议 /部族会议) · 政务官
十二铜表法 · 祖宗大法(英语:Mos maiorum) · 罗马公民 ·準可(英语:Auctoritas) ·帝权(英语:Imperium) ·法律状况(英语:Status in Roman legal system) ·诉讼(英语:Roman litigation)
社会阶层(英语:Social class in ancient Rome)
贵族 · 平民 ·阶级斗争(英语:Conflict of the Orders) ·平民的脱离运动(英语:平民的脱离运动 (古罗马)) · 罗马骑士阶级 ·家庭(英语:Gens) · 部族 · 古罗马人命名习俗 ·妇女(英语:Women in ancient Rome) · 婚姻 · 收养 · 同性戀 ·奴隶(英语:Slavery in ancient Rome) ·巴高达(英语:Bagaudae)
軍事
军事史(战役史 · 军事科技史(英语:古罗马军事科技史) ·军事政治史(英语:Political history of the Roman military)) · 边境 ·军队的建立(英语:Military establishment of the Roman Republic) ·军队结构(英语:Structural history of the Roman military) ·前沿和防御工事(英语:Roman military frontiers and fortifications) · 兵营 · 战略 ·工程(英语:古罗马军事工程) · 陆军(军团 / 步兵战术 /单兵装备(英语:Roman military personal equipment) · 攻城器械) · 海军 ·辅助设备(英语:Auxiliaries (Roman military)) ·嘉奖与处罚(英语:Roman military decorations and punishments)
10
1
I have a function that searches a vector of iterators and returns the iterator if its names matches a string passed as an argument. koalaGraph::PVertex lookUpByName(std::string Name, std::vector<koalaGraph::PVertex>& Vertices) { for (size_t i = 0; i < Vertices.size(); i++) { if(Vertices[i]->info.name == Name) return Vertices[i]; } } My question is how can I implement this as a lambda, to use it in connection with std::find_if ? I'm trying this: std::vector<koalaGraph::PVertex> V; std::string Name; std::find_if(V.begin(), V.end(), [&Name]() {return Name == V->info.name;}) But it says that V an enclosing-function local variable cannot be referenced in a lambda body unless it is in the capture list.
...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
4
1
I am installing hackintosh in virtualbox on ubuntu, but when I try to start, I get above error. Here are some more details, Result Code: NS_ERROR_FAILURE (0x80004005) Component: ConsoleWrap Interface: IConsole {872da645-4a9b-1727-bee2-5585105b9eed} How can I solve this issue?
16.04 virtualbox
share | improve this question
asked Oct 22 '17 at 15:10
luv.preet luv.preet
1,502 4 13 29
...