Bug 549603 - Debugger gets stuck at main function when std::unordered_set is used
Summary: Debugger gets stuck at main function when std::unordered_set is used
Status: NEW
Alias: None
Product: CDT
Classification: Tools
Component: cdt-debug (show other bugs)
Version: 9.8.0   Edit
Hardware: PC Linux
: P3 critical (vote)
Target Milestone: ---   Edit
Assignee: cdt-debug-inbox@eclipse.org CLA
QA Contact: Jonah Graham CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-07-27 13:31 EDT by Tarun Chawla CLA
Modified: 2020-09-04 15:22 EDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tarun Chawla CLA 2019-07-27 13:31:28 EDT
-- Configuration Details --
Product: Eclipse IDE 4.12.0.20190614-1200 (org.eclipse.epp.package.cpp.product)Installed Features:
 org.eclipse.platform 4.12.0.v20190605-1801

 1. Create a Hello World C++ project in eclipse.
 2. Try debugging this code:
 
 #include <iostream>
#include <unordered_set>


using namespace std;

int main() {

	int no_of_ids;
	cin>>no_of_ids;

	std::unordered_set<int> modulo_set;
}

Debugger does not move or any action when asked to step over or step in using F6 or F5.